// ==UserScript==
// @name          OrKut Dark Style
// @namespace     http://userstyles.org
// @description	  Esta é uma versão escura do Orkut, projetada para evitar a claridade nos olhos.
// @author        fanara
// @homepage      http://userstyles.org/styles/3333
// @include       http://www.orkut.com/*
// @include       https://www.orkut.com/*
// @include       http://*.www.orkut.com/*
// @include       https://*.www.orkut.com/*
// @run-at        document-start
// ==/UserScript==
(function() {
var css = "body{background-color:#006699!important}\n.listitem{background-color:#ccc!important}\n.userbutton{background-color:#e6e6e6!important}\n.thumbbox{background-color:#ccc!important}\n.listitemchk{background-color:#ccc!important}\n.listdark{background-color:#ccc!important}\n.listlight{background-color:#e6e6e6!important}\n.module .boxmid,.module .boxmidsml,.module .boxmidlrg,.module .boxmidlock{background-color:#e6e6e6!important;}";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();

