Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 765 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 765 Bytes

ttycolor

Easy way to use termcolor.

usage

cargo.toml

[dependencies]
ttycolor = "0.1.0"    # easy way to use termcolor

main.rs

extern crate ttycolor;
use ttycolor::ColorTrait;

fn main() {
    let str = "Warning";

    println!("{}: xxxxxx", str.red());
    println!("{}: xxxxxx", str.fg(ttycolor::rgb(0, 255, 0)));
    println!("{}: xxxxxx", str.cyan().bold());
    println!("{}: xxxxxx", str.white().bg_magenta().bold().italic().underline());
    
    println!("{}: xxxxxx", String::from(str).red());
    println!("{}: {}", str.green(), format!("{:018p}", str).red());
}

preview

screenshot