From b8193bf9f954065fe6ecc69ee076027b40673d10 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Sat, 17 Jan 2026 04:53:42 +0530 Subject: [PATCH] style: use orange color for [no changes] status in thinning message --- crates/g3-core/src/context_window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/g3-core/src/context_window.rs b/crates/g3-core/src/context_window.rs index 6b55c18..d638c82 100644 --- a/crates/g3-core/src/context_window.rs +++ b/crates/g3-core/src/context_window.rs @@ -713,7 +713,7 @@ Format this as a detailed but concise summary that can be used to resume the con ThinScope::All => " (full)", }; let msg = format!( - "\x1b[1;32mg3:\x1b[0m thinning context{} ... {}% ... \x1b[1;32m[no changes]\x1b[0m", + "\x1b[1;32mg3:\x1b[0m thinning context{} ... {}% ... \x1b[38;5;208m[no changes]\x1b[0m", scope_desc, current_percentage ); return (msg, 0);