File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -687,7 +687,7 @@ func getDynamicStyles(bgIsDark bool) (s dynamicStyles) {
687
687
688
688
// Define the color palette
689
689
primaryColor := lipgloss .Color ("#7D56F4" )
690
- secondaryColor := lipgloss .Color ("#00F5FF" )
690
+ secondaryColor := lightDark ( lipgloss .Color ("#00F5FF" ), lipgloss . Color ( "#FF9F9F" ) )
691
691
successColor := lipgloss .Color ("#00E680" )
692
692
errorColor := lipgloss .Color ("#FF4D4D" )
693
693
mutedColor := lipgloss .Color ("#6B7280" )
@@ -765,6 +765,7 @@ func getDynamicStyles(bgIsDark bool) (s dynamicStyles) {
765
765
Padding (1 )
766
766
s .box = lipgloss .NewStyle ().
767
767
Border (lipgloss .RoundedBorder ()).
768
+ BorderForeground (secondaryColor ).
768
769
Padding (1 )
769
770
770
771
return s
@@ -1958,7 +1959,7 @@ func (m model) View() (string, *tea.Cursor) {
1958
1959
header := m .dynamicStyles .title .Margin (0 , 2 ).Render ("Set Account Region" )
1959
1960
1960
1961
regionContent := lipgloss .JoinVertical (
1961
- lipgloss .Left ,
1962
+ lipgloss .Center ,
1962
1963
m .dynamicStyles .text .Render ("Set region for account:" ),
1963
1964
m .dynamicStyles .primary .Render (m .selectedAcc .Name ),
1964
1965
"" ,
You can’t perform that action at this time.
0 commit comments