Merge pull request #1185 from caleb-allen/black-background-hotfix

ignore Chromium's dark mode settings
This commit is contained in:
Samuel Clay 2019-05-09 21:48:19 -04:00 committed by GitHub
commit 43b27be071
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,4 +17,10 @@ code {
pre, blockquote {
background-color: #F2F2F2;
color: rgba(10, 12, 38, .8);
}
/* do not adhere to Chromium's color scheme settings */
@media(prefers-color-scheme: dark){
body {
background-color: #FFF;
}
}