This is just a simple modification of the Javascript bookmarklet called "Darken" by Gina Trapani. No idea if it had already been updated or not, but here's the list of what I changed for anybody interested:
javascript: (function (){var newSS, styles = '* { background-color: black ! important; color: green !important; }a:link, a:link * { color: green !important; text-style: underline; }a:visited, a:visited * { color: #7f0000 !important; }a:hover, a:hover * { color: red !important; }';var elemHead = document.getElementsByTagName("head")[0];var elemCSS = document.getElementById("darkenCSS");if (elemCSS){elemHead.removeChild(elemCSS);}else{newSS = document.createElement('link');newSS.rel = 'stylesheet';newSS.href = 'data:text/css,' + escape(styles);newSS.id = "darkenCSS";elemHead.appendChild(newSS);}})();