summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 64a44a62d88d72a6eb0258d5f6b46a4141c1c498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
pub const NORMAL:  &str = "\x1b[0m";
pub const BOLD:    &str = "\x1b[1m";
pub const DIM:     &str = "\x1b[2m";
pub const RED:     &str = "\x1b[31m";
pub const GREEN:   &str = "\x1b[32m";
pub const YELLOW:  &str = "\x1b[33m";
pub const BLUE:    &str = "\x1b[34m";
pub const MAGENTA: &str = "\x1b[35m";
pub const CYAN:    &str = "\x1b[36m";
pub const WHITE:   &str = "\x1b[37m";