Changing preferences for dark theme

This commit is contained in:
Ian Roddis
2022-02-28 10:20:32 -04:00
parent e13cf512b7
commit 086f29b054

View File

@@ -1,8 +1,19 @@
:root {
--accent-bg: #F3F3F3;
--base-fontsize: 1.0rem;
}
@media (prefers-color-scheme: light) {
:root {
--accent-bg: #F3F3F3;
}
}
@media (prefers-color-scheme: dark) {
:root {
--accent-bg: #3F3F3F;
}
}
body {
max-width: 100%;
padding: 0px;