From 0b6f8191dc15539e46b92ccc533a3515bcc6070d Mon Sep 17 00:00:00 2001 From: George Tsiolis Date: Mon, 27 Apr 2026 16:32:38 +0300 Subject: [PATCH] Use ANSI red for error styles to match terminal profile --- internal/ui/styles/styles.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ui/styles/styles.go b/internal/ui/styles/styles.go index a3daa4b3..b71191f6 100644 --- a/internal/ui/styles/styles.go +++ b/internal/ui/styles/styles.go @@ -51,7 +51,7 @@ var ( Foreground(lipgloss.Color("214")) LogError = lipgloss.NewStyle(). - Foreground(lipgloss.Color("#C33820")) + Foreground(lipgloss.Color("1")) // Secondary/muted style for prefixes Secondary = lipgloss.NewStyle(). @@ -60,7 +60,7 @@ var ( // Error styles ErrorTitle = lipgloss.NewStyle(). Bold(true). - Foreground(lipgloss.Color("#C33820")) + Foreground(lipgloss.Color("1")) ErrorDetail = lipgloss.NewStyle(). Foreground(lipgloss.Color("245"))