colored 2.1.0

The most simple way to add colors in your terminal
Documentation
1
2
3
4
5
6
use colored::*;
fn main() {
    let my_color = CustomColor::new(0, 120, 120);
    println!("{}", "Greetings from Ukraine".custom_color(my_color));
    println!("{}", "Slava Ukraini!".on_custom_color(my_color));
}