mirror of
https://github.com/NotAShelf/microfetch.git
synced 2025-11-04 15:42:20 +00:00
11 lines
379 B
Rust
11 lines
379 B
Rust
pub const RESET: &str = "\x1b[0m";
|
|
pub const BLUE: &str = "\x1b[34m";
|
|
pub const CYAN: &str = "\x1b[36m";
|
|
pub const GREEN: &str = "\x1b[32m";
|
|
pub const YELLOW: &str = "\x1b[33m";
|
|
pub const RED: &str = "\x1b[31m";
|
|
pub const MAGENTA: &str = "\x1b[35m";
|
|
|
|
pub fn print_dots() -> String {
|
|
format!("{BLUE} {CYAN} {GREEN} {YELLOW} {RED} {MAGENTA} {RESET}")
|
|
}
|