Skip to content

Commit 339ce15

Browse files
committed
style(ui): change system message color to red for error visibility
1 parent a0ac1d8 commit 339ce15

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/cortex-core/src/style.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,12 +362,10 @@ impl CortexStyle {
362362
Style::default().fg(SKY_BLUE)
363363
}
364364

365-
/// System message style: muted italic text
365+
/// System message style: error red italic text for backend error messages
366366
#[inline]
367367
pub fn system_message() -> Style {
368-
Style::default()
369-
.fg(TEXT_MUTED)
370-
.add_modifier(Modifier::ITALIC)
368+
Style::default().fg(ERROR).add_modifier(Modifier::ITALIC)
371369
}
372370

373371
/// Code style: electric blue text on surface background

0 commit comments

Comments
 (0)