Greasy Fork is available in English.

Hackaday De-dark

Invert colour scheme from a dark one to a light one

  1. // ==UserScript==
  2. // @name Hackaday De-dark
  3. // @namespace http://hackaday.com/*
  4. // @namespace https://hackaday.com/*
  5. // @description Invert colour scheme from a dark one to a light one
  6. // @include Http://hackaday.com/*
  7. // @include Https://hackaday.com/*
  8. // @version 1
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. document.body.style.background = "white";
  13.  
  14. var all = document.getElementsByTagName("*");
  15.  
  16. for (var i=0, max=all.length; i < max; i++) {
  17. all[i].style.color = "grey";
  18. }