diff options
| author | adamdotdevin <[email protected]> | 2025-08-18 06:00:38 -0500 |
|---|---|---|
| committer | adamdotdevin <[email protected]> | 2025-08-18 06:00:38 -0500 |
| commit | 2f4db2777c4f8af05741b49c55f8cec374767f27 (patch) | |
| tree | 332fdde2cd29fcb3a5a0a7fb7cabdde36390faa9 | |
| parent | 667ff90dd6be20bf19d5424a80d57559d38352f5 (diff) | |
| download | opencode-2f4db2777c4f8af05741b49c55f8cec374767f27.tar.gz opencode-2f4db2777c4f8af05741b49c55f8cec374767f27.zip | |
fix(tui): title bg color missing on system theme
| -rw-r--r-- | packages/tui/internal/components/chat/message.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/tui/internal/components/chat/message.go b/packages/tui/internal/components/chat/message.go index cb166246e..15db37539 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 := "" |
