get the css and icons ?

Monkey Archive Forums/Monkey Discussion/get the css and icons ?

Paul - Taiphoz(Posted 2013) [#1]
any chance I or we could get our hands on the websites css and the icons/images that it's using, I would love a crack at making things a little more visible and easier to read than they are now..

The theme is good and has a lot of improvements over the old site, but I think as others have pointed out its got a few draw backs as well and is very pale and can be hard to read as a result.


Paul - Taiphoz(Posted 2013) [#2]
something like this would help visibility a lot.. I think,




therevills(Posted 2013) [#3]
I've just been playing with Greasemonkey and managed to get the site looking like this:



Using this simple script:
// ==UserScript==
// @name        MonkeyTheme
// @namespace   monkey
// @description change monkey theme
// @include     http://www.monkey-x.com/*.*
// @version     1
// @grant       none
// ==/UserScript==

(function () {
    var defColor = '#333333', defBGColor = '#eeeeee';
    var ORIGINAL_STYLE = 'original_style';
    var NO_INLINE_STYLE = 'no inline style';
    
    document.body.setAttribute("style", "background-color: #000000;");
    
	var ps=document.getElementsByTagName('p');
    var color = defColor;
    var bgColor = defBGColor;
	for (var i=0, node; i<ps.length; i++){
		node=ps[i];
        if (node.hasAttribute('style')) {
            node.setAttribute(ORIGINAL_STYLE, node.getAttribute('style'));
        }
        else {
            node.setAttribute(ORIGINAL_STYLE, NO_INLINE_STYLE);
        }
        node.style.color = color;
        node.style.backgroundColor = bgColor;
        node.style.lineHeight = 1;
	}
	
	var ps=document.getElementsByTagName('small');
    var color = defColor;
    var bgColor = defBGColor;
	for (var i=0, node; i<ps.length; i++){
		node=ps[i];
        if (node.hasAttribute('style')) {
            node.setAttribute(ORIGINAL_STYLE, node.getAttribute('style'));
        }
        else {
            node.setAttribute(ORIGINAL_STYLE, NO_INLINE_STYLE);
        }
        node.style.color = color;
        node.style.backgroundColor = bgColor;
        node.style.lineHeight = 1;
	}
})();


Only "issue" is that I think GM only works in FF, and my main browsers are IE and Chrome...


Paul - Taiphoz(Posted 2013) [#4]
Yeah I use Chrome, and even if I did use FF I would not use Greasemonkey, don't personally like it.

But that is an option for people who use FireFox, still not really ideal tho.