scaffold a basic bubble tree layout
This commit is contained in:
@@ -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)
|
||||
)
|
||||
Reference in New Issue
Block a user