Skip to content

Instantly share code, notes, and snippets.

@lopespm
Last active September 19, 2018 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lopespm/028037f93a2496c7ac4fbe0f68aecc5a to your computer and use it in GitHub Desktop.
Save lopespm/028037f93a2496c7ac4fbe0f68aecc5a to your computer and use it in GitHub Desktop.
Custom Firefox userChrome.css for dark private tabs when using light theme
/* How to Create a userChrome.css File: https://www.userchrome.org/how-create-userchrome-css.html */
/* Dark background color for private browsing tabs, with corresponding lighter text color */
#main-window[privatebrowsingmode="temporary"] #tabbrowser-tabs {
/*--tab-line-color: #8000d7 !important;*/
background-color: #000000 !important;
color: #ffffff !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment