diff options
| author | adamdottv <[email protected]> | 2025-06-20 11:52:26 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-06-20 13:00:31 -0500 |
| commit | 8b73c52f00661a516cd89d9bb45b036dcc93c0f0 (patch) | |
| tree | 5c14ad5894e608801bc32505c4957dd2e50d6029 /packages/tui/internal/components/status | |
| parent | 5603098d174ee17d08a19908ee40a91cea9c9c05 (diff) | |
| download | opencode-8b73c52f00661a516cd89d9bb45b036dcc93c0f0.tar.gz opencode-8b73c52f00661a516cd89d9bb45b036dcc93c0f0.zip | |
chore(tui): rename theme colors
Diffstat (limited to 'packages/tui/internal/components/status')
| -rw-r--r-- | packages/tui/internal/components/status/status.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/tui/internal/components/status/status.go b/packages/tui/internal/components/status/status.go index 01a2659c6..48e53fafd 100644 --- a/packages/tui/internal/components/status/status.go +++ b/packages/tui/internal/components/status/status.go @@ -88,7 +88,7 @@ func (m statusComponent) View() string { cwd := styles.Padded(). Foreground(t.TextMuted()). - Background(t.BackgroundSubtle()). + Background(t.BackgroundPanel()). Render(m.app.Info.Path.Cwd) sessionInfo := "" @@ -123,7 +123,7 @@ func (m statusComponent) View() string { 0, m.width-lipgloss.Width(logo)-lipgloss.Width(cwd)-lipgloss.Width(sessionInfo), ) - spacer := lipgloss.NewStyle().Background(t.BackgroundSubtle()).Width(space).Render("") + spacer := lipgloss.NewStyle().Background(t.BackgroundPanel()).Width(space).Render("") status := logo + cwd + spacer + sessionInfo |
