Skip to content

Commit 1fdbb6e

Browse files
committed
chore: small color changes
1 parent 4f90e2c commit 1fdbb6e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ func getDynamicStyles(bgIsDark bool) (s dynamicStyles) {
687687

688688
// Define the color palette
689689
primaryColor := lipgloss.Color("#7D56F4")
690-
secondaryColor := lipgloss.Color("#00F5FF")
690+
secondaryColor := lightDark(lipgloss.Color("#00F5FF"), lipgloss.Color("#FF9F9F"))
691691
successColor := lipgloss.Color("#00E680")
692692
errorColor := lipgloss.Color("#FF4D4D")
693693
mutedColor := lipgloss.Color("#6B7280")
@@ -765,6 +765,7 @@ func getDynamicStyles(bgIsDark bool) (s dynamicStyles) {
765765
Padding(1)
766766
s.box = lipgloss.NewStyle().
767767
Border(lipgloss.RoundedBorder()).
768+
BorderForeground(secondaryColor).
768769
Padding(1)
769770

770771
return s
@@ -1958,7 +1959,7 @@ func (m model) View() (string, *tea.Cursor) {
19581959
header := m.dynamicStyles.title.Margin(0, 2).Render("Set Account Region")
19591960

19601961
regionContent := lipgloss.JoinVertical(
1961-
lipgloss.Left,
1962+
lipgloss.Center,
19621963
m.dynamicStyles.text.Render("Set region for account:"),
19631964
m.dynamicStyles.primary.Render(m.selectedAcc.Name),
19641965
"",

0 commit comments

Comments
 (0)