~/.mozilla/firefox/YOUR-PROFILE/chrome/userContent.css
を作成/編集するだけです 以下が含まれます:
input, textarea {
color:#000 !important;
}
個人的には、背景を白にして、テキストを濃い灰色にして柔らかくしたいので、次のように設定しています:
input, textarea {
color:#555 !important;
background-color:#fff !important;
}
注:変更を反映するには、Firefox を終了して再起動する必要があります。
代替手段の 1 つは、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;}");