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
Currently the logo on the home page is the same regardless of theme:
params: logo: main: logo.png
If the logo is dark, and the theme is switched to dark mode, the background behind the logo goes dark, which can obscure the logo.
As such, I propose an option to set a different logo for dark mode.
A CSS filter partially works, but is not ideal:
html[data-theme="dark"] .home img { -webkit-filter: invert(1); filter: invert(1); background-color: #xxxxxx; /* invert of dark mode colour */ }
Slightly related to #902
The text was updated successfully, but these errors were encountered:
Hi @jamesdeluk, which logo do you mean? The user avatar in the middle of the home screen, or the logo on the navbar?
Sorry, something went wrong.
I guess both? But I was mainly thinking of the one in the middle of the home screen.
No branches or pull requests
Describe the solution you'd like
Currently the logo on the home page is the same regardless of theme:
If the logo is dark, and the theme is switched to dark mode, the background behind the logo goes dark, which can obscure the logo.
As such, I propose an option to set a different logo for dark mode.
Describe alternatives you've considered
A CSS filter partially works, but is not ideal:
Additional context
Slightly related to #902
The text was updated successfully, but these errors were encountered: