Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How do I recolor the "new tab"-tab and all other firefox tabs so they aren't as blinding as new fallen snow on a bright sunny day?

  • 5 replies
  • 1 has this problem
  • 1 view
  • Last reply by cor-el

more options

I am looking for a way to recolor some firefox/mozilla pages so that they aren't as bright. I am refering to pages like the "new tab"-tab, options tab, and some mozilla sites. I have downloaded a couple addons that work perfectly on other websites, but it won't work on the tabs I just mentioned. The "dark background and light text"-addon even says that this is because of firefox restrictions.

Is there a way to change the background color on these pages so I don't have to be blinded every time I want to open a new tab or change something in the options?

I am looking for a way to recolor some firefox/mozilla pages so that they aren't as bright. I am refering to pages like the "new tab"-tab, options tab, and some mozilla sites. I have downloaded a couple addons that work perfectly on other websites, but it won't work on the tabs I just mentioned. The "dark background and light text"-addon even says that this is because of firefox restrictions. Is there a way to change the background color on these pages so I don't have to be blinded every time I want to open a new tab or change something in the options?
Attached screenshots

All Replies (5)

more options
more options

You can use code in userContent.css to style builtin about pages.

Add code to the userContent.css file.


@-moz-document url-prefix(about:){
  body,stack[flex="1"],hbox[flex="1"]{ background-color: #e8e8e8 !important;}
}

@-moz-document url-prefix(about:preferences){
  .search-container { background-color: unset !important}
}

The first step is to open the "Help -> Troubleshooting Information" page and find the button to access the profile folder.

You can find this button under the "Application Basics" section as "Profile Folder -> Open Folder". If you click this button then you open the profile folder in the Windows File Explorer. You need to create a folder with the name chrome in this folder (name is all lowercase). In the chrome folder you need to create a text file with the name userContent.css (name is case sensitive). In this userContent.css text file you paste the text posted.

In Windows saving the file is usually the only time things get more complicated because Windows can silently add a .txt file extension and you end up with a file named userContent.css.txt. To avoid this you need to make sure to select "All files" in the dialog to save the file in the text editor using "Save File as".

Modified by cor-el

more options

I've edited my above reply to add specific rules for about:preferences. If you need code for other about: pages then please tell us.

more options

cor-el said

I've edited my above reply to add specific rules for about:preferences. If you need code for other about: pages then please tell us.

Thank you. This helped, but as you predicted, I need some help getting this to work on the other about pages

more options

I've edited the reply another time to cover more about: pages like about:addons