make the colors a bit better.

This commit is contained in:
Fries 2023-06-11 14:14:19 -07:00
parent 6925d7e737
commit 54488e1e87
1 changed files with 4 additions and 5 deletions

View File

@ -1,17 +1,16 @@
@media (prefers-color-scheme: light) {
:root {
--background-color: white;
--text-color: #black;
--background-color: #f6f5f4;
--text-color: black;
--link-color: darkblue;
}
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: black;
--text-color: white;
--background-color: #191919;
--text-color: #E9E9E9;
--link-color: cyan;
}
}