diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 20:31:27 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 20:31:27 -0800 |
| commit | 3518c03449eb6f4deb89583c2bcb250431c126ef (patch) | |
| tree | eebbcd08218c789dbb5c1495c202fe64243ed0a9 /tui/style.go | |
| parent | 9e0cfa0cc8c18083bc2b268a744c00a0fb644551 (diff) | |
| download | neko-3518c03449eb6f4deb89583c2bcb250431c126ef.tar.gz neko-3518c03449eb6f4deb89583c2bcb250431c126ef.tar.bz2 neko-3518c03449eb6f4deb89583c2bcb250431c126ef.zip | |
feat(tui): modernize TUI layout with sidebar and keybindings (NK-gdf99z)
Diffstat (limited to 'tui/style.go')
| -rw-r--r-- | tui/style.go | 9 |
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) ) |
