From 2f4db2777c4f8af05741b49c55f8cec374767f27 Mon Sep 17 00:00:00 2001 From: adamdotdevin <2363879+adamdottv@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:00:38 -0500 Subject: [PATCH] fix(tui): title bg color missing on system theme --- packages/tui/internal/components/chat/message.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tui/internal/components/chat/message.go b/packages/tui/internal/components/chat/message.go index cb166246..15db3753 100644 --- a/packages/tui/internal/components/chat/message.go +++ b/packages/tui/internal/components/chat/message.go @@ -787,7 +787,7 @@ func renderToolTitle( title := renderToolAction(toolCall.Tool) t := theme.CurrentTheme() shiny := util.Shimmer(title, t.BackgroundPanel(), t.TextMuted(), t.Accent()) - return styles.NewStyle().Width(width - 6).Render(shiny) + return styles.NewStyle().Background(t.BackgroundPanel()).Width(width - 6).Render(shiny) } toolArgs := ""