Skip to main content

ansi_term_codes/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3
4// Text attributes
5pub const BOLD: &str = "\x1b[1m";
6pub const DIM: &str = "\x1b[2m";
7pub const ITALIC: &str = "\x1b[3m";
8pub const UNDERLINE: &str = "\x1b[4m";
9pub const RESET: &str = "\x1b[0m";
10
11// Foreground colors
12pub const RED: &str = "\x1b[31m";
13pub const GREEN: &str = "\x1b[32m";
14pub const YELLOW: &str = "\x1b[33m";
15pub const BLUE: &str = "\x1b[34m";
16pub const MAGENTA: &str = "\x1b[35m";
17pub const CYAN: &str = "\x1b[36m";
18
19// Bold foreground colors
20pub const BOLD_RED: &str = "\x1b[1;31m";
21pub const BOLD_GREEN: &str = "\x1b[1;32m";