diff --git a/crates/diagnostics/src/diagnostic_renderer.rs b/crates/diagnostics/src/diagnostic_renderer.rs index eaf414560845ea..21da60b5161ff2 100644 --- a/crates/diagnostics/src/diagnostic_renderer.rs +++ b/crates/diagnostics/src/diagnostic_renderer.rs @@ -206,7 +206,7 @@ impl DiagnosticBlock { (status_colors.warning_background, status_colors.warning) } DiagnosticSeverity::INFORMATION => (status_colors.info_background, status_colors.info), - DiagnosticSeverity::HINT => (status_colors.hint_background, status_colors.info), + DiagnosticSeverity::HINT => (status_colors.hint_background, status_colors.hint), _ => (status_colors.ignored_background, status_colors.ignored), }; let settings = ThemeSettings::get_global(cx); diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 2878c8f3b88e4c..61ff853e15880f 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -29086,7 +29086,7 @@ pub fn diagnostic_style(severity: lsp::DiagnosticSeverity, colors: &StatusColors lsp::DiagnosticSeverity::ERROR => colors.error, lsp::DiagnosticSeverity::WARNING => colors.warning, lsp::DiagnosticSeverity::INFORMATION => colors.info, - lsp::DiagnosticSeverity::HINT => colors.info, + lsp::DiagnosticSeverity::HINT => colors.hint, _ => colors.ignored, } }