This script will fix the dropdown text color in OGame, I made it for Firefox (Only tested with 3.6) it makes the select tags inherit the text color so the text inside em is readable.

Download

Over at userscripts.org

Changelog

1.1 – 25/Jan/2010

Removed jQuery loading because OGame already includes it, fixes galaxy overview

1.0 – 22/Jan/2010

Initial Release

Code

// ==UserScript==
// @name           OGame (1.X) Dropdown Text Color Fix
// @namespace      http://theelitist.net/2010/01/22/ogame-select-tag-fix/
// @description    Fixes OGame (1.X) Dropdown Text Color
// @include        *.ogame.org*
// @exclude        *board.ogame.org*
// ==/UserScript==

// Modify the CSS
$(document).ready(function() {
	$("select").css("color", "inherit");
});

Post any bugs/suggestions here in the comments or at userscripts.org

~Xeross