-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add more contrast for document_highlight()
#39
Comments
If anything, that should be user configurable as I personally see this theme's lower contrast as being a really good thing. |
I think these could be a bit lighter on dark bg. On light bg they do seem to be more visible. I am currently refactoring and changing how shades are applied everywhere, so, as part of that, I will try to make these a bit lighter while keeping the low contrast vibe. |
One of the difficulties here is to not overlap with the In the screenshot below, Using a colorful background for searches would solve that and "free" |
By the way, out of interest I compared the APCA Lc1 value for Here are the values:
(edit: changed URLs to the non-productive "SAPC" version of the tool, which is more precise in very low contrast ranges.) Similarly, the contrast for APCA is the algorithm used by W3C in the draft version of the WCAG accessibility guidelines. It is a very useful tool for designing colorschemes and ensuring that perceived contrasts are proportional between dark and light modes. Footnotes
|
Interesting. My eyes don't agree with this algorithm though 😀 Like if I try to make dark bg contrast match the contrast of light bg, it doesn't look like the same contrast at all... I guess it also depends a lot on the environment and the display, e.g. I get much higher contrast on my laptop screen than on my monitor. And normally you would (at least I would) use light bg in bright environment compared to dark bg in darker environment. So even if light bg objectively does have more contrast, it would make sense when considering the practicality of described scenario. |
That's fair, and to be clear I don't disagree with the existing highlights, and use primarily dark mode. |
@ramojus It's hard to say. I see the difference between "before" and "after" but I also see a big difference between your screenshots and mine, so I'm a bit confused. But overall it's better now. |
@strash Probably not what you meant, but I'll say this just in case - I wasn't trying to match your suggestion (on your second screenshot) exactly. Instead, I was aiming for a more subtle change. I think the difference between my before screenshot and your unmodified screenshot is that the font you are using has thicker strokes compared to the font that I'm using. That makes all of the colors appear brighter (as they have more area to fully show themselves, without antialiasing "weakening" them), and thus the contrast of bg layers is harder to see. I've checked with a color picker, and I think different fonts affecting the perceived contrast of bg layers may be enough of a reason for a config option. I'll think about it. |
Indeed, it's very subtle change (0 0 16 -> 0 0 17 HSB 😀), but I think I see it better now. Thank you! |
@ramojus should I close the issue? |
Better to keep it open for now. I'll add configuration for bg layers contrast and that's a bit related. |
@strash I've added the ability to override shades in #45, but it's a breaking change, so it was merged to v1 branch. After longer usage, I ended not liking the changes in #40, so I will revert them. This is how you can replicate them (from v1 branch): require 'mellifluous'.setup({
color_overrides = {
dark = {
colors = function(colors)
return {
bg2 = colors.bg:lightened(4),
bg3 = colors.bg:lightened(7),
bg4 = colors.bg:lightened(10),
bg5 = colors.bg:lightened(13),
}
end,
}
},
})
After a couple of weeks, v1 branch should be merged to main (when v1.0.0 will be released). |
On the light scheme the highlight is fine but on the dark scheme it is almost invisible.
It would be nice to add some contrast, just enough to be distinguishable but not annoying.
The text was updated successfully, but these errors were encountered: