@@ -32,73 +32,65 @@ 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 )
81-
82- ToolsStyle = lipgloss .NewStyle ().
83- Border (lipgloss .RoundedBorder ()).
84- BorderForeground (borderPrimary ).
85- PaddingLeft (0 ).
86- MarginLeft (0 ).
87- Align (lipgloss .Left )
79+ Border (lipgloss .RoundedBorder ()).
80+ BorderForeground (borderPrimary )
8881
8982 // Input styles
9083 InputStyle = lipgloss .NewStyle ().
91- Padding (2 , 0 , 1 , 0 )
84+ Padding (2 , 0 , 1 , 0 )
9285
9386 FocusedStyle = lipgloss .NewStyle ().
94- Padding (2 , 0 , 1 , 0 )
87+ Padding (2 , 0 , 1 , 0 )
9588
9689 // Layout helpers
9790 CenterStyle = lipgloss .NewStyle ().
98- Align (lipgloss .Center , lipgloss .Center )
91+ Align (lipgloss .Center , lipgloss .Center )
9992
10093 // Deprecated styles (kept for backward compatibility)
101- FooterStyle = BaseStyle
10294 StatusStyle = MutedStyle
10395 ActionStyle = SecondaryStyle
10496 ChatStyle = BaseStyle
0 commit comments