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
Improve the display of charts in night mode by applying CSS filters to the map canvas.
This can be achieved in the user.js user.css by adding
user.js
user.css
.nightMode .ol-layer { filter: invert(100%) hue-rotate(180deg); }
The brightness is inverted and the hue rotation keeps the colors correct. The brightness can still be reduced as usual.
The text was updated successfully, but these errors were encountered:
Cool. Should also be possible simply by using the user.css.
Sorry, something went wrong.
I was not aware that this exists, that's even easier. It would make sense to disable this feature for charts that already come in a night theme.
good point. So maybe I should add some css class that has an identifier for the chart so that you can select based on this one.
No branches or pull requests
Improve the display of charts in night mode by applying CSS filters to the map canvas.
This can be achieved in the
user.js
user.css
by addingThe brightness is inverted and the hue rotation keeps the colors correct. The brightness can still be reduced as usual.
The text was updated successfully, but these errors were encountered: