aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorache <ache@ache.one>2026-08-05 10:43:26 +0200
committerache <ache@ache.one>2026-08-05 10:43:26 +0200
commit9f3290bb02bae12edbdf300a48b766c0b0cbab64 (patch)
treef6c4f1a7978be765803ce8875ef6d628c6e8126f /src
parentRemove TTL reply (diff)
Fix green background
Diffstat (limited to 'src')
-rw-r--r--src/print.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/print.rs b/src/print.rs
index de5e508..037e690 100644
--- a/src/print.rs
+++ b/src/print.rs
@@ -12,9 +12,8 @@ struct SymbolTableElement {
const GREEN_FG: &str = "\x1b[32m";
const ORANGE_FG: &str = "\x1b[38;5;208m";
const RED_FG: &str = "\x1b[31m";
-// const BLACK_FG :&str = "\x1b[31m";
const BLACK_BG: &str = "\x1b[40m";
-const GREEN_BG: &str = "\x1b[40m";
+const GREEN_BG: &str = "\x1b[42m";
const ORANGE_BG: &str = "\x1b[48;5;208m";
const ERASE_LINE_END: &str = "\x1b[0K";
const RESET: &str = "\x1b[0m";