due to the way my eyes work, dark mode is actually a lot harder to read. but i know for some folks it's totally the opposite. so despite not really feeling like dark mode works very well for the current vibe of my site, i've implemented one
now i ask of you,
will you make light mode for me?
i end up using "reader mode" in firefox to get a light mode theme on a lot of blogs because it's more comfortable to read, but then i lose all your awesome custom work.......... if you can deal with the extra work, i suggest having both!!
:root {
--color-background: #fff;
--color-text: #333;
background: var(--color-background);
color: var(--color-text);
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: #333;
--color-text: #ccc;
}
}