summaryrefslogtreecommitdiffstats
path: root/vendor/colored/examples/custom_colors.rs
blob: 05c588e60a644755146c5b431dabc364a9fd0ff6 (plain)
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));
}