Skip to content

Instantly share code, notes, and snippets.

@marlonschlosshauer
Last active March 2, 2022 01:07
Show Gist options
  • Save marlonschlosshauer/27932ded5447ad1ee607b2c047497559 to your computer and use it in GitHub Desktop.
Save marlonschlosshauer/27932ded5447ad1ee607b2c047497559 to your computer and use it in GitHub Desktop.
Dark Theme for HN in 8 lines of CSS
@-moz-document url-prefix("https://news.ycombinator.com") {
@media (prefers-color-scheme: dark) {
* :not(.votearrow, input, textarea) {
color: #f2f2f2 !important;
background: #1a1a1a !important;
}
}
}
@marlonschlosshauer
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment