mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 20:14:45 +00:00
9 lines
305 B
Rust
9 lines
305 B
Rust
//! Escape sequences change the color of the terminal
|
|
|
|
pub const RESET: &str = "\x1b[m";
|
|
pub const DEEP_RED: &str = "\x1b[31m";
|
|
pub const RED: &str = "\x1b[91m";
|
|
pub const GREEN: &str = "\x1b[92m";
|
|
pub const YELLOW: &str = "\x1b[93m";
|
|
pub const BLUE: &str = "\x1b[94m";
|
|
pub const CYAN: &str = "\x1b[96m";
|