colorize-rs
A fork of colorize https://github.com/jeremyletang/colorize
colorize-rs provide simple text colorization for terminal emulator, using ansi escape characters.
colorize-rs is really simple to use, see this short example !
extern crate colorize_rs;
use colorize_rs::{AnsiColor, Color};
pub fn main() {
colorize_rs::global_fg(Color::Blue);
colorize_rs::global_bg(Color::Red);
println!("{}", "Hello World !".green().underlined().yellowb());
println!("{}", "Bright Green foreground and Magenta background !".b_green().magentab());
}