Add a sort of dark mode

This commit is contained in:
2026-08-08 20:40:58 -04:00
parent 73c076dc71
commit fa8f0b3a03
4 changed files with 23 additions and 15 deletions

View File

@@ -1,3 +1,12 @@
:root {
--background-color: #f4f4f4;
--color-background: #f4f4f4;
--color-primary: #000000;
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: #111111;
--color-primary: #eeeeee;
}
}