Removes the awful white flash when loading new pages on Firefox for a nicer dark theme.
-
Type
about:configin the URL bar. -
Search
toolkit.legacyUserProfileCustomizations.stylesheetsand double-click the field to set it totrue. -
Type
about:supportin the URL bar. -
Look for
Profile folderfield and click on the open button next to it. -
Create a folder with the name
chrome. -
Inside this folder, create a file
userChrome.cssand paste the following code inside it:
tabbrowser tabpanels { background-color: rgb(28,27,34) !important; }
browser { background-color: #1C1B22 !important; }- Then create another file
userContent.cssand paste the followind code in it:
@-moz-document url-prefix(about:blank) {
html > body:empty {
background-color: rgb(28,27,34) !important;
}
}
@-moz-document url(about:blank) {
html > body:empty {
background-color: rgb(28,27,34) !important;
}
}- Completely quit and restart Firefox.
Your eyes will thank you...