Initilaize
This commit is contained in:
17
pkg/theme/colors.go
Normal file
17
pkg/theme/colors.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package theme
|
||||
|
||||
import "github.com/charmbracelet/lipgloss/v2"
|
||||
|
||||
var (
|
||||
// Primary colors
|
||||
Blue = lipgloss.Color("#61AFEF")
|
||||
Yellow = lipgloss.Color("#E5C07B")
|
||||
Green = lipgloss.Color("#98C379")
|
||||
Red = lipgloss.Color("#E06C75")
|
||||
Gray = lipgloss.Color("#5C6370")
|
||||
White = lipgloss.Color("#ABB2BF")
|
||||
|
||||
// Background colors
|
||||
BgDark = lipgloss.Color("#282C34")
|
||||
BgLight = lipgloss.Color("#3E4451")
|
||||
)
|
||||
Reference in New Issue
Block a user