Noirzen
Sleek. Dark. Effortlessly Minimal.
Crafted for developers who value aesthetics and functionality
Created by
@e108
• Inspired by
VS Code Themes
•
MIT License
• v1.6.0
Download
VS Code
3
main.js
0
0
JavaScript
Noirzen
<
div
className
=
"theme-container"
>
</
div
>
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
();
}
});