//! Values
pub use C;
pub use X;
/// Bold Value.
pub const B: &str = "\x1b[1m";
/// Italics Value.
pub const I: &str = "\x1b[3m";
/// Underline Value.
pub const U: &str = "\x1b[4m";
/// Strike through Value.
pub const S: &str = "\x1b[9m";
pub const RESET: &str = "\x1b[0m";
pub const RESET_B: &str = "\x1b[22m";
pub const RESET_I: &str = "\x1b[23m";
pub const RESET_U: &str = "\x1b[24m";
pub const RESET_S: &str = "\x1b[29m";
pub const RESET_C: &str = "\x1b[39m";
pub const RESET_X: &str = "\x1b[49m";