Skip to content

Instantly share code, notes, and snippets.

@Sollace
Last active May 8, 2022 09:04
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 Sollace/01d296ea3544c5828c0a1583aceb1445 to your computer and use it in GitHub Desktop.
Save Sollace/01d296ea3544c5828c0a1583aceb1445 to your computer and use it in GitHub Desktop.
Snippet that when inserted into Firefox's userChrome.css will cause the browser to use the accent colour from windows (like it did prior to proton). Will also override dark theme to allow using the accent colour together with a dark firefox UI.
/* BRING BACK ACCENT COLOR START */
/* Snippet that when inserted into Firefox's userChrome.css will cause the browser
to use the accent colour from windows (like it did prior to proton).
Will also override dark theme to allow using the accent colour together with a dark firefox UI.
*/
:root:not(:-moz-window-inactive) #TabsToolbar {
background-color: -moz-accent-color !important;
color: -moz-accent-color-foreground !important;
}
/* BRING BACK ACCENT COLOR END */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment