Last active
March 26, 2019 13:51
-
-
Save imwm/59507cff58994bdaa0f9a15c9c5392e0 to your computer and use it in GitHub Desktop.
CSS for Stratechery (stratechery.com) in dark mode
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
/* | |
in chrome, use the stylebot extension to implement: | |
https://chrome.google.com/webstore/detail/stylebot/oiaejidbmkiecgbjeifoejpgmdaleoha?hl=en | |
*/ | |
body { | |
background-color: #161616; | |
color: #eee; | |
} | |
#daily-updates { | |
background-color: #111; | |
} | |
blockquote, input[type="search"], .bigfoot-footnote__content { | |
background-color: #080808; | |
border-color: #222; | |
color: #eee; | |
} | |
h1, h2, h3, h4, h1 a, .concept-definition { | |
color: #eee; | |
} | |
a:hover { | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment