okansi 0.2.0

An ok library for creating ANSI terminal styles
Documentation
pub const BELL: &str = "\x07";
pub const RESET: &str = "\x1b[0m";
pub const HOME: &str = "\x1b[H";

pub mod erase {
	pub const SCREEN: &str = "\x1b[2J";
	pub const CURSOR_TO_END_SCREEN: &str = "\x1b[0J";
	pub const CURSOR_TO_START_SCREEN: &str = "\x1b[1J";

	pub const LINE: &str = "\x1b[2K";
	pub const CURSOR_TO_END_LN: &str = "\x1b[0K";
	pub const CURSOR_TO_START_LN: &str = "\x1b[0K";
}

pub mod bitmasks {
	pub const BOLD: u8 = 0b1;
	pub const ITALIC: u8 = 0b10;
	pub const UNDERLINE: u8 = 0b100;
	pub const STRIKETHROUGH: u8 = 0b1000;
	pub const DIM: u8 = 0b10000;
	pub const BLINKING: u8 = 0b100000;
	pub const REVERSE: u8 = 0b1000000;
	pub const HIDDEN: u8 = 0b10000000;
}