vscode
themes
Trending
·
Dark
·
Light
Pens Color Theme
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
()
}
})
16
Pens Color Theme
by damc
Minimalistic and constant colors.
Open in VSCode
View on Github