aboutsummaryrefslogtreecommitdiffstats
path: root/tui/style.go
diff options
context:
space:
mode:
Diffstat (limited to 'tui/style.go')
-rw-r--r--tui/style.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/tui/style.go b/tui/style.go
index 7b21c78..0fbfa5a 100644
--- a/tui/style.go
+++ b/tui/style.go
@@ -40,4 +40,13 @@ var (
Foreground(gray).
Italic(true).
MarginTop(1)
+
+ // Layout Styles
+ PaneStyle = lipgloss.NewStyle().
+ Border(lipgloss.RoundedBorder()).
+ BorderForeground(gray).
+ Padding(0, 1)
+
+ ActivePaneStyle = PaneStyle.Copy().
+ BorderForeground(maroon)
)