diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..93d8a62 --- /dev/null +++ b/style.css @@ -0,0 +1,20 @@ +@media (prefers-color-scheme: light) { + :root { + --background: white; + --foreground: black; + } +} + +@media (prefers-color-scheme: dark) { + :root { + --background: black; + --foreground: white; + } +} + +body { + background-color: var(--background); + color: var(--foreground); + font-family: monospace; + font-size: 14px; +} |