ignore Chromium's dark mode settings, including html tag

This commit is contained in:
Caleb Allen 2019-05-28 15:37:11 -06:00
parent 7125f46a58
commit c40bf64362

View file

@ -1,4 +1,4 @@
body {
body, html {
background-color: #FFF;
}
@ -20,7 +20,7 @@ pre, blockquote {
}
/* do not adhere to Chromium's color scheme settings */
@media(prefers-color-scheme: dark){
body {
body, html {
background-color: #FFF;
}
}