Comment on HN Dark ModeComments−susam4yI 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)' })−anotherthought14yAmazing how two lines can be so effective.
Comments
I have a tiny Greasemonkey script to do this myself.
Amazing how two lines can be so effective.