aboutsummaryrefslogtreecommitdiffstats
path: root/tui/style.go
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 22:14:30 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 22:14:30 -0800
commit47c43577ead8721008b858232511b2f65e0ed574 (patch)
treea15d1a4a4bb64b4b7d3de650b306835d8d7f63a5 /tui/style.go
parent76cb9c2a39d477a64824a985ade40507e3bbade1 (diff)
downloadneko-47c43577ead8721008b858232511b2f65e0ed574.tar.gz
neko-47c43577ead8721008b858232511b2f65e0ed574.tar.bz2
neko-47c43577ead8721008b858232511b2f65e0ed574.zip
Optimize asset packaging: move UI assets to root dist/ and decouple rice embedding
Diffstat (limited to 'tui/style.go')
-rw-r--r--tui/style.go52
1 files changed, 0 insertions, 52 deletions
diff --git a/tui/style.go b/tui/style.go
deleted file mode 100644
index 0fbfa5a..0000000
--- a/tui/style.go
+++ /dev/null
@@ -1,52 +0,0 @@
-package tui
-
-import "github.com/charmbracelet/lipgloss"
-
-var (
- // Colors
- maroon = lipgloss.Color("#800000")
- lavender = lipgloss.Color("#E6E6FA")
- gray = lipgloss.Color("#808080")
- darkGray = lipgloss.Color("#404040")
-
- // Styles
- TitleStyle = lipgloss.NewStyle().
- Bold(true).
- Foreground(lavender).
- Background(maroon).
- Padding(0, 1)
-
- ListStyle = lipgloss.NewStyle().
- Padding(1, 2)
-
- SelectedItemStyle = lipgloss.NewStyle().
- PaddingLeft(2).
- Foreground(lavender).
- Background(darkGray).
- Bold(true)
-
- ItemStyle = lipgloss.NewStyle().
- PaddingLeft(2)
-
- HeaderStyle = lipgloss.NewStyle().
- Bold(true).
- Foreground(maroon).
- MarginBottom(1)
-
- ContentStyle = lipgloss.NewStyle().
- Padding(1, 4)
-
- StatusStyle = lipgloss.NewStyle().
- Foreground(gray).
- Italic(true).
- MarginTop(1)
-
- // Layout Styles
- PaneStyle = lipgloss.NewStyle().
- Border(lipgloss.RoundedBorder()).
- BorderForeground(gray).
- Padding(0, 1)
-
- ActivePaneStyle = PaneStyle.Copy().
- BorderForeground(maroon)
-)