为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

I'm looking to customize a light theme but can't find the CSS file to alter the hex codes

  • 3 个回答
  • 2 人有此问题
  • 3 次查看
  • 最后回复者为 jawsont

more options

I've looked pretty exhaustively and it seems like since Quantum, the light themes all seem to go back to about:config. Specifically I've been in the profiles folder and tried changing the hex in prefs.js with no luck since you can only alter the text and highlight colours (and even those don't seem to change when I put in a different hex value and relaunch FF).

Specifically what I'm trying to do is make the "highlight/find" background color for an error have higher contrast. It must be editable on some level without having to resort to doing the whole userChrome.css thing because the lightweight themes like defaulDark have a different color than this.

I've looked pretty exhaustively and it seems like since Quantum, the light themes all seem to go back to about:config. Specifically I've been in the profiles folder and tried changing the hex in prefs.js with no luck since you can only alter the text and highlight colours (and even those don't seem to change when I put in a different hex value and relaunch FF). Specifically what I'm trying to do is make the "highlight/find" background color for an error have higher contrast. It must be editable on some level without having to resort to doing the whole userChrome.css thing because the lightweight themes like defaulDark have a different color than this.

被采纳的解决方案

The built-in themes have access to more parts of Firefox than the themes from the Add-ons site.

To replace or override the Find bar colors, you will need to create custom style rules in a userChrome.css file. For example, this sets white text on a dark red background:

/* White-on-Dark-Red for Not Found */
.findbar-textbox[status="notfound"] {
  color: #fff !important;
  background-color: #900 !important;
}

If you haven't encountered the userChrome.css file before, I have a site here with mountains of detail: https://www.userchrome.org/how-create-userchrome-css.html

定位到答案原位置 👍 1

所有回复 (3)

more options

Attached is the highlight box in question. On the left is the 'light theme' on the right is the 'dark theme'. Definitely a different background colour so it must be editable in light themes right?

由jawsont于修改

more options

选择的解决方案

The built-in themes have access to more parts of Firefox than the themes from the Add-ons site.

To replace or override the Find bar colors, you will need to create custom style rules in a userChrome.css file. For example, this sets white text on a dark red background:

/* White-on-Dark-Red for Not Found */
.findbar-textbox[status="notfound"] {
  color: #fff !important;
  background-color: #900 !important;
}

If you haven't encountered the userChrome.css file before, I have a site here with mountains of detail: https://www.userchrome.org/how-create-userchrome-css.html

more options

I was leery of using userChrome.css given the warning at the top of the modifications page (https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Tutorial/Modifying_the_Default_Skin). It makes it sound like at some point FF will no longer support the userChrome file.

Nonetheless - much appreciated - putting that element into the css file worked magic. Also, thank you - I actually HAD been to your page before while I was looking for solutions, it's a great help. Part of my problem had been not knowing that .findbar-textbox was the element I needed to put in.

Cheers


<solved>