Skip to main content

rgx/
ansi.rs

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