diff --git a/helix-term/src/ui/text_decorations/diagnostics.rs b/helix-term/src/ui/text_decorations/diagnostics.rs index fb82bcf54..84f6c6803 100644 --- a/helix-term/src/ui/text_decorations/diagnostics.rs +++ b/helix-term/src/ui/text_decorations/diagnostics.rs @@ -26,10 +26,10 @@ struct Styles { impl Styles { fn new(theme: &Theme) -> Styles { Styles { - hint: theme.get("hint"), - info: theme.get("info"), - warning: theme.get("warning"), - error: theme.get("error"), + hint: theme.get("hint.diagnostic.inline"), + info: theme.get("info.diagnostic.inline"), + warning: theme.get("warning.diagnostic.inline"), + error: theme.get("error.diagnostic.inline"), } }