rustcolor 0.4.0

Rust terminal rendering library thats supports 3/4 bit, 8 bit and 24 bit colors.
Documentation
1
2
3
4
5
6
7
8
9
10
use rustcolor::printer::ColorPrinter;

fn main() {
    println!("{}", "this is the info style".to_owned().info());
    println!("{}", "this is the primary style".to_owned().primary());
    println!("{}", "this is the warn style".to_owned().warn());
    println!("{}", "this is the danger style".to_owned().danger());
    println!("{}", "this is the error style".to_owned().error());
    println!("{}", "this is the underlined style".to_owned().underline());
}