Documentation
¶
Overview ¶
This file centralizes all style definitions, making it easy to:
- Maintain consistent look and feel across the application
- Implement themes (dark/light mode)
- Change colors/sizing in one place
References:
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Primary colors - main application accent Primary = lipgloss.Color("99") // Purple PrimaryBg = lipgloss.Color("63") // Lighter purple for backgrounds // Secondary colors - supporting elements Secondary = lipgloss.Color("241") // Gray // Accent colors - highlights and emphasis Accent = lipgloss.Color("212") // Pink // Status colors Success = lipgloss.Color("10") // Green Warning = lipgloss.Color("11") // Yellow Error = lipgloss.Color("9") // Red Info = lipgloss.Color("12") // Blue // Text colors Text = lipgloss.Color("252") // Light gray TextMuted = lipgloss.Color("241") // Dimmed gray TextBold = lipgloss.Color("255") // Bright white TextAccent = lipgloss.Color("99") // Purple tinted // Background colors BgDefault = lipgloss.Color("235") // Dark gray BgDark = lipgloss.Color("234") // Darker gray BgLight = lipgloss.Color("237") // Lighter gray // Border colors Border = lipgloss.Color("238") BorderFocus = lipgloss.Color("99") // Purple when focused )
Functions ¶
func AvailableThemes ¶
func AvailableThemes() []string
func CurrentTheme ¶
func CurrentTheme() string
Types ¶
Click to show internal directories.
Click to hide internal directories.