diff options
Diffstat (limited to 'grasp-audit/src')
| -rw-r--r-- | grasp-audit/src/result.rs | 4 |
1 files 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; | |||
| 5 | use std::time::{Duration, Instant}; | 5 | use std::time::{Duration, Instant}; |
| 6 | 6 | ||
| 7 | // ANSI color codes | 7 | // ANSI color codes |
| 8 | const GREEN: &str = "\x1b[32m"; | 8 | const GREEN: &str = "\x1b[1;92m"; // Bold bright green - ANSI standard for high visibility |
| 9 | const RED: &str = "\x1b[31m"; | 9 | const RED: &str = "\x1b[1;91m"; // Bold bright red - ANSI standard for high visibility |
| 10 | const YELLOW: &str = "\x1b[33m"; | 10 | const YELLOW: &str = "\x1b[33m"; |
| 11 | const BLUE: &str = "\x1b[34m"; | 11 | const BLUE: &str = "\x1b[34m"; |
| 12 | const CYAN: &str = "\x1b[36m"; | 12 | const CYAN: &str = "\x1b[36m"; |