為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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>