summaryrefslogtreecommitdiffhomepage
path: root/packages/tui/internal/components/status
diff options
context:
space:
mode:
Diffstat (limited to 'packages/tui/internal/components/status')
-rw-r--r--packages/tui/internal/components/status/status.go4
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