Créez/modifiez simplement ~/.mozilla/firefox/YOUR-PROFILE/chrome/userContent.css
il comprend donc :
input, textarea {
color:#000 !important;
}
personnellement, j'aime aussi m'assurer que l'arrière-plan est blanc et rendre le texte gris foncé pour qu'il soit plus doux, donc j'ai réglé le mien sur :
input, textarea {
color:#555 !important;
background-color:#fff !important;
}
Remarque :Vous devrez quitter et redémarrer Firefox avant que les modifications n'apparaissent.
Une alternative consiste à utiliser un script Greasemonkey :
// ==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;}");