writefreely dark mode compatible Custom CSS
@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