scaffold a basic bubble tree layout

This commit is contained in:
2025-12-31 02:32:59 +00:00
parent 30ff191fb0
commit 6ab1a915f4
6 changed files with 190 additions and 6 deletions
+26
View File
@@ -0,0 +1,26 @@
/*
everything related to theming goes here
a theme is any set of colors or styles that are used in several
places or are expected to be globally consistent/modified
- ruinivist, 30Dec25
*/
package styles
import "github.com/charmbracelet/lipgloss"
// ==================== colors ====================
var (
Primary = lipgloss.Color("#7D56F4")
Secondary = lipgloss.Color("#FF5C8F")
Background = lipgloss.Color("#1E1E2E")
// TODO: to extend as needed, right now this is just a
// placeholder
)
// ==================== lipgloss styles ====================
var (
DividerStyle = lipgloss.NewStyle().
Width(1).
Background(Primary)
)