Live data from Hacker News

Show HN: DarkHN – Dark Mode Mirror for Hacker News

darkhn.herokuapp.com

11–20 of 71 posts

Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News

#13
I 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

#15
post #13

I 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/

Dark reader works unreasonably well.it has done more than any other project to restore some degree of visual consistency to our computer screens in the age of web apps.

Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News

#16

I 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.

Same here. It's definitely not as intelligent as extensions on desktop browser, but it's suitable in a pinch.

Re: Show HN: DarkHN – Dark Mode Mirror for Hacker News

#17
post #9
post #6

Would 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.

I, too, appreciate HN's reluctance to add new features, and have zealously followed the same approach in maintaining my own tiny corner of the web for two decades.

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

#19

Shameless 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

Easily one of the best add-ons I've installed. Thanks.
Post reply on HN