1 2 3 4 5 6
pub const RED: &str = "\x1b[31m"; pub const GREEN: &str = "\x1b[32m"; pub const BOLD: &str = "\x1b[1m"; pub const RED_BOLD: &str = "\x1b[1;31m"; pub const GREEN_BOLD: &str = "\x1b[1;32m"; pub const RESET: &str = "\x1b[0m";