Created
October 21, 2023 17:11
-
-
Save gulsoy83/14024c3ab0324a725fb2ee720712466d to your computer and use it in GitHub Desktop.
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
/* First, check these links: | |
& https://www.userchrome.org/ | |
& https://www.askvg.com/tip-enable-colorized-titlebar-again-in-firefox-103-and-later-versions/ | |
With this css, firefox will have colored title bar like google chrome. | |
If you don't like plain white, give it a try. | |
In the article above, inactive window color is same with active window color, thus you can't distinguish the difference. | |
It makes harder to understand whether the window is selected or not. This version fixes it. | |
*/ | |
/* active window and title text color */ | |
.titlebar-color:not(:-moz-window-inactive){ | |
color: AccentColorText; | |
background-color: AccentColor; | |
} | |
/* inactive window and title text color */ | |
.titlebar-color{ | |
color: color-mix(in srgb, AccentColorText 75%, transparent); | |
background-color: color-mix(in srgb, AccentColor 75%, white); | |
} | |
/* not selected tabs transparent container */ | |
.tabbrowser-tab:not([selected=true]):not([multiselected=true]) .tab-background{ | |
background-color: color-mix(in srgb, currentColor 10%, transparent); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment