te4.org link color change

Everything about ToME 4.x.x. No spoilers, please

Moderator: Moderator

Post Reply
Message
Author
Graziel
Wyrmic
Posts: 234
Joined: Wed Sep 15, 2010 10:32 am

te4.org link color change

#1 Post 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; }' );
You are likely to be eaten by a grue

Sradac
Sher'Tul
Posts: 1081
Joined: Fri Sep 21, 2007 3:18 am
Location: Angolwen

Re: te4.org link color change

#2 Post 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;
}

Post Reply