colorz 1.1.4

A terminal text-coloring library
Documentation
1
2
3
4
5
use colorz::Colorize;

fn main() {
    println!("Wow this {} {}", "is so red".red(), "and green".on_green());
}