Skip to content

Instantly share code, notes, and snippets.

View eilx's full-sized avatar
🎯
Focusing

Andrew Thompson eilx

🎯
Focusing
View GitHub Profile
@eilx
eilx / fft-atbc-support.css
Last active November 19, 2023 09:53
firefox-gnome-theme: adaptive tab bar color support w/ alternative container tab display
/*
PROBLEMS
1 - URL text's 'https://www.' and such appear as a darker shade of the main color.
I don't know how to change the shade of those parts to how it would be on a light theme,
so on a 'light' background the URL is currently just all black :(
2 - There's no way to view a tab's container without being on that tab. I'm using
simple tab groups for my containers which 'fixes' this, but that's not really a solution :/
*/
@eilx
eilx / userChrome.css
Last active August 29, 2022 09:08
Custom Firefox userChrome.css
@layer Colors {
:root {
--bg-bright: white; /* Used for Navigation bar */
--bg-dark: #F6F6F6; /* Used for Tab bar */
--seperator: #CFCFCF;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-bright: #424242;