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