rustcolor 0.5.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
11
use rustcolor::{blink, danger, error, info, primary, printer::ColorPrinter, underline, warn};

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