A quick guide on color-coding multiple Firefox profiles.
- Open
about:configand settoolkit.legacyUserProfileCustomizations.stylesheetsto True. - Within the Firefox profile directory, create a new directory named
chrome. - Within the
chromedirectory, createuserChrome.csswith the following content:
#tabbrowser-tabs {
background-color: $COLOR !important;
}
- To color tabs as well, add:
/* Active tab background */
.tab-background {
background-color: $COLOR !important;
}
/* Inactive tab */
.tabbrowser-tab:not([selected]) {
color: #f7f7f7 !important;
}
- Close and restart Firefox.