Skip to content

Comment on HN Dark Mode

Comments

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)'
  })

Amazing how two lines can be so effective.

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.