vscode
themes
Trending
·
Dark
·
Light
Boring
javascript
css
html
const btn = document.
getElementById
(
'btn'
)
let count =
0
function
render
() {
btn.innerText =
`Count: ${
count
}`
}
btn.
addEventListener
(
'click'
, () => {
// Count from 1 to 10.
if (count <
10
) {
count +=
1
render
()
}
})
907
Boring Theme
by eliasson
A light, mostly, black and white team with strong focus on readability and less distractions.
Open in VSCode
View on Github