1 unstable release

0.1.0 Jun 30, 2022

#859 in Command-line interface

31 downloads per month

MIT/Apache

4KB
50 lines

EzColorize

Library to easily change the color of output text

Example

use ez_colorize::ColorizeDebug;

#[derive(Debug)]
struct MyData{}

fn main() {
    let a = 23;
    println!("{}", a.red());

    let my_data = MyData{};
    println!("{}", my_data.blue());
}

No runtime deps