Skip to content

Instantly share code, notes, and snippets.

@Debdut
Created July 11, 2022 20:38
Show Gist options
  • Save Debdut/9565e3389df8db14a789745424825c85 to your computer and use it in GitHub Desktop.
Save Debdut/9565e3389df8db14a789745424825c85 to your computer and use it in GitHub Desktop.
HN Dark Light Mode
:root {
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
--color: black;
--background-color: white;
}
@media (prefers-color-scheme: dark) {
:root {
--color: #f1f1f1;
--background-color: #222;
}
}
.admin td,
.subtext td,
input,
input[type=\"submit\"],
textarea,
a:link,
a:visited,
.default,
.admin,
.title,
.subtext,
.yclinks,
.pagetop,
.comhead,
.comment,
.hnname {
color: var(--color) !important;
}
body, #hnmain, #hnmain tr:first-child td {
background-color: var(--background-color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment