Skip to content

Commit 061cb77

Browse files
gitcoder89431claude
andcommitted
Fix: Format and lint cleanup for v0.1.1
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 093ace3 commit 061cb77

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

crates/agentic-core/src/theme.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,26 +109,26 @@ impl Theme {
109109
},
110110
// Terminal.app fallback colors
111111
(ThemeVariant::EverforestDark, true) => ColorPalette {
112-
background: Color::Reset, // Use terminal's default background
112+
background: Color::Reset, // Use terminal's default background
113113
foreground: Color::White,
114114
accent: Color::Green,
115115
secondary: Color::Red,
116116
info: Color::Cyan,
117-
border: Color::Gray, // Gray instead of DarkGray for visibility
118-
selection: Color::Blue, // Blue selection for better visibility
117+
border: Color::Gray, // Gray instead of DarkGray for visibility
118+
selection: Color::Blue, // Blue selection for better visibility
119119
cursor: Color::White,
120120
warning: Color::Yellow,
121121
},
122122
(ThemeVariant::EverforestLight, true) => ColorPalette {
123-
background: Color::Reset, // Use terminal's default background
123+
background: Color::Reset, // Use terminal's default background
124124
foreground: Color::Black,
125125
accent: Color::Green,
126126
secondary: Color::Red,
127-
info: Color::Blue, // Blue instead of Cyan for better contrast
128-
border: Color::DarkGray, // DarkGray for better contrast
129-
selection: Color::Yellow, // Yellow instead of LightYellow
127+
info: Color::Blue, // Blue instead of Cyan for better contrast
128+
border: Color::DarkGray, // DarkGray for better contrast
129+
selection: Color::Yellow, // Yellow instead of LightYellow
130130
cursor: Color::Black,
131-
warning: Color::Magenta, // Magenta for warnings to stand out
131+
warning: Color::Magenta, // Magenta for warnings to stand out
132132
},
133133
};
134134

0 commit comments

Comments
 (0)