Simple ansi colors ```rust use scolor::ColorExt;
println!("{}", "hello".red().bold().underline()); println!("{}", "world".green().red_bg().italic()); ```
License: MIT