From 92bece957b79952a3f9258035b82d738328be9bf Mon Sep 17 00:00:00 2001 From: Dhanji Prasanna Date: Sat, 18 Oct 2025 16:09:30 +1100 Subject: [PATCH] colorizing tool calls --- crates/g3-cli/src/ui_writer_impl.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/g3-cli/src/ui_writer_impl.rs b/crates/g3-cli/src/ui_writer_impl.rs index e7f07e7..dcbfa40 100644 --- a/crates/g3-cli/src/ui_writer_impl.rs +++ b/crates/g3-cli/src/ui_writer_impl.rs @@ -115,8 +115,8 @@ impl UiWriter for ConsoleUiWriter { String::new() }; - // Print with bold green formatting using ANSI escape codes - println!("┌─\x1b[1;32m {} | {}{}\x1b[0m", tool_name, display_value, header_suffix); + // Print with bold green tool name, purple (non-bold) for pipe and args + println!("┌─\x1b[1;32m {}\x1b[0m\x1b[35m | {}{}\x1b[0m", tool_name, display_value, header_suffix); } else { // Print with bold green formatting using ANSI escape codes println!("┌─\x1b[1;32m {}\x1b[0m", tool_name);