Erstellen/bearbeiten Sie einfach ~/.mozilla/firefox/YOUR-PROFILE/chrome/userContent.css
es enthält also:
input, textarea {
color:#000 !important;
}
Ich persönlich stelle auch gerne sicher, dass der Hintergrund weiß ist, und mache den Text dunkelgrau, damit er weicher ist, also habe ich meine Einstellung auf:
gesetztinput, textarea {
color:#555 !important;
background-color:#fff !important;
}
Hinweis:Sie müssen Firefox beenden und neu starten, bevor die Änderungen angezeigt werden.
Eine Alternative ist die Verwendung eines Greasemonkey-Skripts:
// ==UserScript==
// @name Style Corrector
// @author Nufros (loosely based on Color Corrector by Erik Nomitch)
// @description Style Corrector (by Nufros) allow you to edit colors, (...)
// @namespace userscripts.org/scripts/show/36850
// @include *
// @exclude http://*.deviantart.com/*
// @exclude http://*.myspace.tld/*
// @exclude http://*.youtube.tld/*
// ==/UserScript==
// Visit the script's page for the full script
GM_addStyle("input { color: #bfbfbf; background-color: #222222 !important; }");
GM_addStyle("textarea { color:#bfbfbf; background-color: #222222 !important;}");