tex-fmt 0.4.2

LaTeX formatter written in Rust
//! Colors for use in logging and testing

/// Reset color formatting
pub const RESET: &str = "\x1b[00m\x1b[0m";

/// Bright red
pub const RED: &str = "\x1b[31m\x1b[1m";

/// Bright green
pub const GREEN: &str = "\x1b[32m\x1b[1m";

/// Bright yellow
pub const YELLOW: &str = "\x1b[33m\x1b[1m";

/// Bright purple
pub const PURPLE: &str = "\x1b[34m\x1b[1m";

/// Bright pink
pub const PINK: &str = "\x1b[35m\x1b[1m";

/// Bright cyan
pub const CYAN: &str = "\x1b[36m\x1b[1m";

/// Bright white
pub const WHITE: &str = "\x1b[37m\x1b[1m";