Created
August 3, 2019 01:33
-
-
Save yuntan/d36351ce0b35365c30421df665490a1f to your computer and use it in GitHub Desktop.
writefreely dark mode compatible Custom CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (prefers-color-scheme: dark) { | |
body { | |
background-color: #181a1b; | |
color: rgb(202, 198, 190); | |
} | |
#blog-title a { | |
color: rgb(214, 211, 205); | |
} | |
.post-title a:link, .post-title a:visited { | |
color: rgb(214, 211, 205); | |
} | |
#wrapper h1, #wrapper h2, #wrapper h3 { | |
color: rgb(214, 211, 205); | |
} | |
.hashtag { | |
color: rgb(110, 155, 244); | |
} | |
article a { | |
color: rgb(110, 155, 244); | |
} | |
#collection article code, #post article code, #subpage article code { | |
background-color: #333; | |
border-color: #666; | |
} | |
body footer nav { | |
color: #888; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment