ansi_color_codec/
constants.rs

1pub const CODE_START: u8 = 0x1b;
2pub const NUMBER_PREFIX: char = '[';
3pub const NUMBER_SUFFIX: char = 'm';
4/// Print this str to reset a color code sequence on the terminal.
5pub const RESET: &str = "\x1b[0m ";