aoc/util/ansi.rs
1//! [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code)
2//!
3//! These codes allow command line applications to show colored or styled text in most terminals.
4//! Advanced commands can move the cursor or clear the screen.
5
6pub const RESET: &str = "\x1b[0m";
7pub const BOLD: &str = "\x1b[1m";
8pub const RED: &str = "\x1b[31m";
9pub const GREEN: &str = "\x1b[32m";
10pub const YELLOW: &str = "\x1b[33m";
11pub const BLUE: &str = "\x1b[94m";
12pub const WHITE: &str = "\x1b[97m";
13pub const HOME: &str = "\x1b[H";
14pub const CLEAR: &str = "\x1b[J";