/* -*-mode:JavaScript;coding:latin-1;-*- Time-stamp: "2006-12-08 18:21:57 AKST"
##### This is a Greasemonkey user script.
##### To use it, you need Greasemonkey first: [url="http://greasemonkey.mozdev.org/"]http://greasemonkey.mozdev.org/[/url]
*/
// ==UserScript==
// @name general_Greyer
// @namespace [url="http://website.com/"]http://website.com/[/url]
// @description original code from All Sites: Page Recolorization by george
// @version 0.0.3
// @include [url]http://*.*.*[/url]
// @include [url]http://*.*/*[/url]
// @author various
// ==/UserScript==
/*
> works on anandtech forums without breaking visited link colors.
> wont remove button graphics so eg, you will see phpbb 3 buttons - unless you use background in place of background-color
*/
(function()
{
var newSS;
var styles = '* { background-color: #999 ! important; color: #000 !important } :link, :link * { color: #551a8b !important } :visited, :visited * { color: #2DFE9E !important }';
newSS = window.document.createElement('link');
newSS.rel='stylesheet';
newSS.href='data:text/css,' + escape(styles);
window.document.getElementsByTagName("head")[0].appendChild(newSS);
})();