summaryrefslogtreecommitdiff
path: root/internal/tui/common
diff options
context:
space:
mode:
Diffstat (limited to 'internal/tui/common')
-rw-r--r--internal/tui/common/styles.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/tui/common/styles.go b/internal/tui/common/styles.go
index ed6a191..d4c75ff 100644
--- a/internal/tui/common/styles.go
+++ b/internal/tui/common/styles.go
@@ -16,8 +16,7 @@ var (
var (
// ScreenStyle is the base style for full-screen models.
ScreenStyle = lipgloss.NewStyle().
- Foreground(ColorText).
- Background(ColorBackground)
+ Foreground(ColorText)
// HeaderStyle is used by top-level titles and screen headers.
HeaderStyle = lipgloss.NewStyle().
@@ -34,7 +33,6 @@ var (
// TabInactiveStyle is applied to non-selected tabs.
TabInactiveStyle = lipgloss.NewStyle().
Foreground(ColorMuted).
- Background(ColorPanel).
Padding(0, 1)
// PanelStyle is used for boxed sections.