-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
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
fix: make dark theme brighter #195
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this, the text is much easier to read now.
Only a slight inconsistency, not sure it matters. --color-contrast-lower
now has better contrast in the dark theme than in the light one. Visible for example when you look at related posts border - barely visible in the light theme, very clear in the dark one.
.theme-icon-light { | ||
display: none; | ||
} | ||
.theme-icon-dark { | ||
display: inline-block; | ||
} | ||
img { | ||
filter: brightness(50%); | ||
filter: brightness(75%); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, that's something I currently override in my websites (going for 80% but that's pretty much the same).
Eagle eye! |
The dark theme is not the night theme, so I think we need to increase the contrast for better reading experience.
The dark theme is not the night theme, so I think we need to increase the contrast for better reading experience.