From 1d58ee5b01e28f77f736c9f415e0cc869a244cc6 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Mon, 19 Jan 2026 16:24:33 +0000 Subject: fix(grasp-audit): improve color readability with bold bright colors Changes RED from standard red (\x1b[31m) to bold bright red (\x1b[1;91m) and GREEN from standard green (\x1b[32m) to bold bright green (\x1b[1;92m). This follows ANSI/ISO standards (ECMA-48) and matches industry best practices used by Rust/Cargo and other modern CLI tools. Bold bright colors provide significantly better readability on dark terminal backgrounds while maintaining maximum compatibility with all terminals. Addresses user feedback that red color was too hard to read. --- grasp-audit/src/result.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grasp-audit/src/result.rs b/grasp-audit/src/result.rs index 4e0e1b1..ae3ef26 100644 --- a/grasp-audit/src/result.rs +++ b/grasp-audit/src/result.rs @@ -5,8 +5,8 @@ use std::collections::BTreeMap; use std::time::{Duration, Instant}; // ANSI color codes -const GREEN: &str = "\x1b[32m"; -const RED: &str = "\x1b[31m"; +const GREEN: &str = "\x1b[1;92m"; // Bold bright green - ANSI standard for high visibility +const RED: &str = "\x1b[1;91m"; // Bold bright red - ANSI standard for high visibility const YELLOW: &str = "\x1b[33m"; const BLUE: &str = "\x1b[34m"; const CYAN: &str = "\x1b[36m"; -- cgit v1.2.3