update example

This commit is contained in:
Lucas Nogueira
2025-11-06 08:20:46 -03:00
parent 66d86b8092
commit 6565c49e61

View File

@@ -7,16 +7,19 @@
<style>
:root {
--text-color: #000000;
--background-color: #ffffff;
}
@media (prefers-color-scheme: dark) {
:root {
--text-color: #ffffff;
--background-color: #000000;
}
}
body {
color: var(--text-color);
background-color: var(--background-color);
margin: 0;
padding: 2rem;
font-family: system-ui, -apple-system, sans-serif;