From 8b73c52f00661a516cd89d9bb45b036dcc93c0f0 Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Fri, 20 Jun 2025 11:52:26 -0500 Subject: chore(tui): rename theme colors --- packages/tui/internal/components/status/status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/tui/internal/components/status') 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 -- cgit v1.2.3