Page 1 of 1

te4.org link color change

Posted: Wed Mar 13, 2013 2:50 pm
by Graziel
userscript for chrome tampermonkey to change eye hurting white color of links on http://te4.org ; ), you can ofc change color to whatever you like ( i like ooze color cause of incoming v1.0.1 ; p )

Code: Select all

// ==UserScript==
// @name       Change TE4 links color
// @namespace  
// @version    1.0
// @description  enter dragon
// @match      http://te4.org/*
// @copyright  2012+, nomnom
// ==/UserScript==

function addCss(cssString) 
{ 
    var head = document.getElementsByTagName('head')[0];     
    var newCss = document.createElement('style'); 
    newCss.type = "text/css"; 
    newCss.innerHTML = cssString; 
    head.appendChild(newCss); 
} 
addCss ( 'a { color: #63E052 !important; }' );

Re: te4.org link color change

Posted: Wed Mar 13, 2013 3:57 pm
by Sradac
I actually propose the following css for http://te4.org/themes/tome/style.css just because it looks so much better


a {
color: #63E052;
}