Last active
May 8, 2022 09:04
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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