This is a tampermonkey script, but can be used outside of it too.
In short:
- slightly lighter background
- darker texts for contrasts
- smaller font
// ==UserScript==
// @name EVE Online Forum Colors
// @namespace github-kyria-tampermonkey-scripts
// @version 0.1
// @description layout change for eveonline forum
// @author althalus@tweetfleet
// @match https://meta.eveonline.com/*
// @grant none
// ==/UserScript==
var descriptionTextColor = '#999';
var latestPostColor = '#BBB';
var mainBackgroundColor = '#252525';
var globalFontSize = '13px';
(function() {
'use strict';
var $newStyle = $('<style></style>');
$newStyle.append('.category-list .category-description, .category-list .subcategories { color: ' + descriptionTextColor + '; }');
$newStyle.append('.category-list td.latest .featured-topic a.title { color: ' + latestPostColor + '; }');
$newStyle.append('#main-outlet { background-color: ' + mainBackgroundColor + '; }');
$newStyle.append('html { font-size: ' + globalFontSize + '; }');
$newStyle.appendTo('head');
$('.subcategories .subcategory a span.badge-category').removeAttr('style');
})();
Example preview: