Skip to content

Commit

Permalink
chore: tweak colors
Browse files Browse the repository at this point in the history
  • Loading branch information
dhth committed Mar 15, 2024
1 parent e4dd129 commit b083182
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ui/styles.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var (
Bold(true).
Background(lipgloss.Color("#d3869b"))

modeStyle = fgStyle.Copy().
envStyle = fgStyle.Copy().
Align(lipgloss.Center).
Bold(true).
Background(lipgloss.Color("#b8bb26")).
Expand All @@ -26,13 +26,13 @@ var (
systemStyle = nonFgStyle.Copy().
Align(lipgloss.Left).
Bold(true).
Foreground(lipgloss.Color("#8ec07c")).
Foreground(lipgloss.Color("#83a598")).
Width(30)

inSyncStyle = nonFgStyle.Copy().
Align(lipgloss.Center).
Bold(true).
Foreground(lipgloss.Color("#fe8019")).
Foreground(lipgloss.Color("#b8bb26")).
Width(16)

outOfSyncStyle = nonFgStyle.Copy().
Expand Down
2 changes: 1 addition & 1 deletion ui/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (m model) View() string {
s += fmt.Sprintf("%s", systemStyle.Render("system"))

for _, env := range envs {
s += fmt.Sprintf("%s ", modeStyle.Render(env))
s += fmt.Sprintf("%s ", envStyle.Render(env))
}
s += "\n\n"
for _, sys := range m.systemNames {
Expand Down

0 comments on commit b083182

Please # to comment.