ziyy 2.0.0-beta.0

Convenient Terminal Output Styler.
Documentation
//! Values
mod c;
mod x;

pub use c::C;
pub use x::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(crate) const RESET: &str   = "\x1b[0m";
pub(crate) const RESET_B: &str = "\x1b[22m";
pub(crate) const RESET_I: &str = "\x1b[23m";
pub(crate) const RESET_U: &str = "\x1b[24m";
pub(crate) const RESET_S: &str = "\x1b[29m";
pub(crate) const RESET_C: &str = "\x1b[39m";
pub(crate) const RESET_X: &str = "\x1b[49m";