diff options
| author | ache <ache@ache.one> | 2026-08-05 10:43:26 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-08-05 10:43:26 +0200 |
| commit | 9f3290bb02bae12edbdf300a48b766c0b0cbab64 (patch) | |
| tree | f6c4f1a7978be765803ce8875ef6d628c6e8126f /src | |
| parent | Remove TTL reply (diff) | |
Fix green background
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.rs | 3 |
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"; |