DarkReader

turn reading articles in a monochrome pleasure for your eyes

  1. // ==UserScript==
  2. // @name DarkReader
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description turn reading articles in a monochrome pleasure for your eyes
  6. // @author Tim L. Greller
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. window.addEventListener('load', function(){
  12. document.querySelectorAll("*").forEach(function(_){
  13. _.style.color = "#c3c0b8";
  14. _.style.backgroundColor = "#1d1511";
  15. });
  16. });