upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

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