#![allow(dead_code)]
pub const RESET: &str = "\x1b[0m";
pub const BRIGHT: &str = "\x1b[1m";
pub const DIM: &str = "\x1b[2m";
pub const UNDERSCORE: &str = "\x1b[4m";
pub const BLINK: &str = "\x1b[5m";
pub const REVERSE: &str = "\x1b[7m";
pub const HIDDEN: &str = "\x1b[8m";
pub const BLACK: &str = "\x1b[30m";
pub const RED: &str = "\x1b[31m";
pub const GREEN: &str = "\x1b[32m";
pub const YELLOW: &str = "\x1b[33m";
pub const BLUE: &str = "\x1b[34m";
pub const MAGENTA: &str = "\x1b[35m";
pub const CYAN: &str = "\x1b[36m";
pub const WHITE: &str = "\x1b[37m";
pub const BGBLACK: &str = "\x1b[40m";
pub const BGRED: &str = "\x1b[41m";
pub const BGGREEN: &str = "\x1b[42m";
pub const BGYELLOW: &str = "\x1b[43m";
pub const BGBLUE: &str = "\x1b[44m";
pub const BGMAGENTA: &str = "\x1b[45m";
pub const BGCYAN: &str = "\x1b[46m";
pub const BGWHITE: &str = "\x1b[47m";