@@ -32,63 +32,63 @@ var (
3232var (
3333 // Base application style
3434 AppStyle = lipgloss .NewStyle ().
35- Padding (0 , 1 , 0 , 1 )
35+ Padding (0 , 1 , 0 , 1 )
3636
3737 // Text styles
3838 HighlightStyle = lipgloss .NewStyle ().
39- Bold (true ).
40- Foreground (highlight )
39+ Bold (true ).
40+ Foreground (highlight )
4141
4242 MutedStyle = lipgloss .NewStyle ().
43- Foreground (muted )
43+ Foreground (muted )
4444
4545 SubtleStyle = lipgloss .NewStyle ().
46- Foreground (subtle )
46+ Foreground (subtle )
4747
4848 SecondaryStyle = lipgloss .NewStyle ().
49- Foreground (secondary )
49+ Foreground (secondary )
5050
5151 // Status styles
5252 SuccessStyle = lipgloss .NewStyle ().
53- Foreground (success )
53+ Foreground (success )
5454
5555 ErrorStyle = lipgloss .NewStyle ().
56- Foreground (errorColor )
56+ Foreground (errorColor )
5757
5858 WarningStyle = lipgloss .NewStyle ().
59- Foreground (warning )
59+ Foreground (warning )
6060
6161 ActiveStyle = lipgloss .NewStyle ().
62- Foreground (active )
62+ Foreground (active )
6363
6464 InProgressStyle = lipgloss .NewStyle ().
65- Foreground (inProgress )
65+ Foreground (inProgress )
6666
6767 PendingStyle = lipgloss .NewStyle ().
68- Foreground (pending )
68+ Foreground (pending )
6969
7070 // Layout styles
7171 HeaderStyle = lipgloss .NewStyle ().
72- Bold (true ).
73- Foreground (highlight ).
74- Padding (0 , 0 , 1 , 0 )
72+ Bold (true ).
73+ Foreground (highlight ).
74+ Padding (0 , 0 , 1 , 0 )
7575
7676 BaseStyle = lipgloss .NewStyle ()
7777
7878 BorderStyle = lipgloss .NewStyle ().
79- Border (lipgloss .RoundedBorder ()).
80- BorderForeground (borderPrimary )
79+ Border (lipgloss .RoundedBorder ()).
80+ BorderForeground (borderPrimary )
8181
8282 // Input styles
8383 InputStyle = lipgloss .NewStyle ().
84- Padding (2 , 0 , 1 , 0 )
84+ Padding (2 , 0 , 1 , 0 )
8585
8686 FocusedStyle = lipgloss .NewStyle ().
87- Padding (2 , 0 , 1 , 0 )
87+ Padding (2 , 0 , 1 , 0 )
8888
8989 // Layout helpers
9090 CenterStyle = lipgloss .NewStyle ().
91- Align (lipgloss .Center , lipgloss .Center )
91+ Align (lipgloss .Center , lipgloss .Center )
9292
9393 // Deprecated styles (kept for backward compatibility)
9494 StatusStyle = MutedStyle
0 commit comments