feat: Used improved theme selections for tool call highlighting colors
CI / All (ubuntu-latest) (push) Failing after 25s
CI / All (macos-latest) (push) Has been cancelled
CI / All (windows-latest) (push) Has been cancelled

This commit is contained in:
2026-07-23 18:51:57 -06:00
parent d328310880
commit b9474ce6ef
+2 -2
View File
@@ -67,13 +67,13 @@ pub fn init_tool_colors(theme: &Theme) {
if let Some(c) = resolve(theme, "comment") {
let _ = TOOL_DIM_COLOR.set(c);
}
if let Some(c) = resolve(theme, "string") {
if let Some(c) = resolve(theme, "support.function") {
let _ = TOOL_FN_COLOR.set(c);
}
if let Some(c) = resolve(theme, "constant.numeric") {
let _ = TOOL_KEY_COLOR.set(c);
}
if let Some(c) = resolve(theme, "keyword") {
if let Some(c) = resolve(theme, "string") {
let _ = TOOL_WARN_COLOR.set(c);
}
}