// ==UserScript==
// @name All Sites: Page Recolorization
// @description Changes the colors on web pages to be more simple
// ==/UserScript==
(function()
{
var newSS;
var styles = '* { background: white ! important; color: black !important } :link, :link * { color: #0000EE !important } :visited, :visited * { color: #551A8B !important }';
newSS = window.document.createElement('link');
newSS.rel='stylesheet';
newSS.href='data:text/css,' + escape(styles);
window.document.getElementsByTagName("head")[0].appendChild(newSS);
})();