我的 Firefox 中的输入框颜色在白色背景上是浅灰色,这显然是不可读的。我使用的是深色主题,Firefox 似乎接管了文本颜色,同时保留了其白色背景。
无论如何,我想知道我是否可以改变它,以便 Firefox 使用黑色作为输入字段文本。
答案1
只需创建/编辑~/.mozilla/firefox/YOUR-PROFILE/chrome/userContent.css
,它就包括:
input, textarea {
color:#000 !important;
}
我个人也喜欢确保背景是白色的,并使文本为深灰色以使其更柔和,因此我将背景设置为:
input, textarea {
color:#555 !important;
background-color:#fff !important;
}
注意:您需要退出并重新启动 Firefox,更改才会显示出来。
答案2
另一种方法是使用 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;}");