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
/* | |
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 :/ | |
*/ |
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
@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; |