By atomtigerzoo
Has 2 other scripts.
// ==UserScript==
// @name schuelerVZ in Blau
// @namespace http://www.atomtigerzoo.com/labor/schuelervz
// @description Das SchuelerVZ in Blau anstatt Rosa
// @include http://*schuelervz.net/*
// @version 0.1.0
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('@import url(http://atomtigerzoo.com/labor/schuelervz/schuelervz-gm.css);');