fix the gray color displaying incorrectly on some terminals

This commit is contained in:
b1ek 2024-10-22 14:56:36 +10:00
parent cc72d58994
commit cd2c1bc285
Signed by: blek
GPG Key ID: A622C22C9BC616B2
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ pub const RED: &str = "\x1b[1;31m";
pub const BLUE: &str = "\x1b[34m";
pub const WARN: &str = "\x1b[33m";
pub const RESET: &str = "\x1b[0m";
pub const GRAY: &str = "\x1b[30m";
pub const GRAY: &str = "\x1b[90m";
#[derive(Debug, Parser)]
#[command(version, about, long_about = None)]