Last active
February 4, 2025 13:27
-
-
Save Debdut/9565e3389df8db14a789745424825c85 to your computer and use it in GitHub Desktop.
HN Dark Light Mode
This file contains hidden or 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
: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) !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment