-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Tweak warning color for gruvbox_light theme #10455
Comments
Hmm, This is what is currently defined: "warning" = "orange1"
"error" = "red1"
"info" = "aqua1"
"hint" = "blue1" This is what I found in in the call s:HL('CocErrorHighlight', s:none, s:none, s:undercurl, s:red)
call s:HL('CocWarningHighlight', s:none, s:none, s:undercurl, s:orange)
call s:HL('CocInfoHighlight', s:none, s:none, s:undercurl, s:yellow)
call s:HL('CocHintHighlight', s:none, s:none, s:undercurl, s:blue) From this, the outlier seems to be I may be misunderstanding what you mean though. |
This seems to be the case for CoC, but oddly enough only for CoC.
or ALE:
and the screenshots clearly show yellow as being used for warnings |
Huh, weird. Well I guess with the majority using yellow, and stated improved contrast, might as well change them all over to yellow. Let me do a quick check for all the themes and see if the base |
The current behaviour of the theme grubox_light is for the warnings to be written using the orange1 color, when it should be yellow1 instead, according to the original gruvbox vim theme at https://github.com/morhetz/gruvbox. We can see an example on how it should look here:
How it currently looks with orange1 as warning:
and how it would look with
"warning" = { fg = "yellow1" }
:I know it doesn't look much different but the contrast between error and warning benefits greatly from this change
The text was updated successfully, but these errors were encountered: