HN Dark Mode

13 points by barcoder ↗ HN
There's apps, but I love reading HN from a browser. Please can we have a dark button?

7 comments

[ 3.0 ms ] story [ 32.2 ms ] thread
I don't quite get why people ask for a dark mode in websites. I've been using "Dark Reader" on Chrome[0] for a long time ib all websites, without them offering a dark mode, to the point these requests, or even websites announcements of their "dark mode" have become "meh" for me.

- [0]: https://chrome.google.com/webstore/detail/dark-reader/eimadp...

I have a tiny Greasemonkey script to do this myself.

  // ==UserScript==
  // @name Dark HN
  // @match https://news.ycombinator.com/*
  // ==/UserScript==
  window.addEventListener('load', function () {  
    document.body.style.background = '#111'
    document.body.style.filter = 'invert(1) hue-rotate(180deg)'
  })
It used to be the case the only browser that does have some decent Dark Mode extension is Safari.

Now you have Darker News and HNDark. Both are free on App Store.

I am using them both at the same time to get "Gray" Mode instead of "Dark".

But yes I really wish we have official Dark Mode on HN.

Based on comments, yes there are apps & JS/CSS hacks that I can do. But I rather not install another app on my phone, I too would really appreciate a dark mode.