Skip to content

Commit

Permalink
chore: improve module color on light bg
Browse files Browse the repository at this point in the history
  • Loading branch information
leg100 committed Dec 23, 2024
1 parent 3433260 commit 41dca83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/tui/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const (
Green = lipgloss.Color("34")
Turquoise = lipgloss.Color("86")
DarkGreen = lipgloss.Color("#325451")
DarkishGreen = lipgloss.Color("75")
LightGreen = lipgloss.Color("47")
GreenBlue = lipgloss.Color("#00A095")
DeepBlue = lipgloss.Color("39")
LightBlue = lipgloss.Color("81")
LightishBlue = lipgloss.Color("75")
Blue = lipgloss.Color("63")
Violet = lipgloss.Color("13")
Grey = lipgloss.Color("#737373")
Expand Down
5 changes: 4 additions & 1 deletion internal/tui/style.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ var (
Border = Regular.Border(lipgloss.NormalBorder())
ThickBorder = Regular.Border(lipgloss.ThickBorder()).BorderForeground(Violet)

ModuleStyle = Regular.Foreground(DarkishGreen)
ModuleStyle = Regular.Foreground(lipgloss.AdaptiveColor{
Dark: string(LightishBlue),
Light: "27",
})
WorkspaceStyle = Regular.Foreground(Purple)
)

0 comments on commit 41dca83

Please sign in to comment.