By atomtigerzoo
Has 2 other scripts.
// ==UserScript==
// @name studiVZ in Blau
// @namespace http://www.atomtigerzoo.com/labor/studivz
// @description Das StudiVZ in Blau anstatt Rot/Rosa
// @include http://*studivz.net/*
// @version 0.3.5
// ==/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/studivz/studivz-gm.css);');