We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noticed these bugs in the theme that makes light green on too bright background, which is not readable.
This is because of this css:
.colorHeaderPrimary_d1aa77 color: var(--header-primary);
This is the css making that specific bar white:
.categoryHeader_fe2299 background-color: var(--autocomplete-bg);
This is my suggestion for changes:
.categoryHeader_fe2299 { background: background: var(--rbg-text); //color: var(--background); color: var(--rgb-highligh); } .colorHeaderPrimary_d1aa77 { background: var(--bg-brand); color: var(--background); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Noticed these bugs in the theme that makes light green on too bright background, which is not readable.
This is because of this css:
This is the css making that specific bar white:
This is my suggestion for changes:
The text was updated successfully, but these errors were encountered: