Skip to content

Commit 2f4db27

Browse files
committed
fix(tui): title bg color missing on system theme
1 parent 667ff90 commit 2f4db27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tui/internal/components/chat/message.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ func renderToolTitle(
787787
title := renderToolAction(toolCall.Tool)
788788
t := theme.CurrentTheme()
789789
shiny := util.Shimmer(title, t.BackgroundPanel(), t.TextMuted(), t.Accent())
790-
return styles.NewStyle().Width(width - 6).Render(shiny)
790+
return styles.NewStyle().Background(t.BackgroundPanel()).Width(width - 6).Render(shiny)
791791
}
792792

793793
toolArgs := ""

0 commit comments

Comments
 (0)