Don't change color of text with diagnostics messages
blt-r opened this issue · 0 comments
blt-r commented
Currently the theme has
"diagnostic.error" = { fg = "red", underline = { color = "red", style = "curl" } }
"diagnostic.warning" = { fg = "yellow", underline = { color = "yellow", style = "curl" } }
"diagnostic.info" = { fg = "sky", underline = { color = "sky", style = "curl" } }
"diagnostic.hint" = { fg = "teal", underline = { color = "teal", style = "curl" } }
which sets foreground color of text which has diagnostics messages to the color of that message, for example:
I would argue that shouldn't be tha case, because it looks bad, that's not how it is in other Helix themes, and I don't think catppuccin does that for other editors (here is vscode for examle)
(Also I just noticed function color is different and I think vscode's is better)
The fix is very simple, just remove the fg = "..."
from the code above