Expand description
simple crate to allow coloured text and formatting in terminal (for windows)
§Example
use costottorama::{text, back, style}
println!(
"{}{}{}please {}{}colour this text{} and not this",
style::BOLD,
text::LIGHT_RED,
back::LIGHT_BLACK,
style::RESET_BOLD,
back::RESET,
style::RESET_ALL
)