mpc/
colors.rs

1//! Contains consts for ANSI color escape sequences
2#![allow(dead_code)]
3
4/// Red ANSI color
5pub const RED      :&'static str = "\x1b[31m";
6/// Green ANSI color
7pub const GREEN    :&'static str = "\x1b[32m";
8/// Yellow ANSI color
9pub const YELLOW   :&'static str = "\x1b[33m";
10/// Blue ANSI color
11pub const BLUE     :&'static str = "\x1b[34m";
12/// Magenta ANSI color
13pub const MAGENTA  :&'static str = "\x1b[35m";
14/// Cyan ANSI color
15pub const CYAN     :&'static str = "\x1b[36m";
16/// Reset to default ANSI color
17pub const RESET    :&'static str = "\x1b[0m";