Show HN: DarkHN – Dark Mode Mirror for Hacker News
11–20 of 71 posts
Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#12Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#13Works great for me. I use dark themes via Stylus for most of the common websites I visit like HN, GitHub, StackOverflow, etc. All other websites that cause me to squint I just toggle Dark Reader: https://darkreader.org/
Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#14Reading the comments here, a lot of people use various extensions to achieve dark mode, so maybe it is time that HN implements this natively.
Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#15I use Stylus and this stylesheet: https://userstyles.org/styles/22794/a-dark-hacker-news Works great for me. I use dark themes via Stylus for most of the common websites I visit like HN, GitHub, StackOverflow, etc. All other websites that cause me to squint I just toggle Dark Reader: https://darkreader.org/
Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#16I switched to Firefox on iOS because it has a simple toggle to change all sites to dark mode. I can’t imagine going back to Safari without this feature.
Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#17Would love to see this available natively here on HN. The last dark mode request thread I recall garnered 780 points: https://news.ycombinator.com/item?id=23197966
As cool as new features would be, I sort of love the HN approach to feature creep (or even just feature addition, as distinct from "creep"). It's such a welcome change compared to other websites and apps.
But dark mode offers such immense retinal relief that a few lines of CSS¹ does not seem too unreasonable, especially since it means not having to trust third party extensions to do the job (though Firefox supports site-specific CSS rules natively: https://superuser.com/a/319322/38084 ).
¹ I arrived at these few lines for my simple site:
@media (prefers-color-scheme: dark) {
body {background: #222b39;color: #e1dfdc}
input,textarea {background: #333;color: #e1dfdc;border: 1px solid white}}
though HN likely requires a far more skillful and circumspect approach, e.g., https://news.ycombinator.com/item?id=23199649 .Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#18Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News
#19Shameless self-plug: I built Refined Hacker News[0], a browser extension, that allows one to set custom CSS and has a default preset for dark-mode :). [0]: https://github.com/plibither8/refined-hacker-news