1 2 3 4 5 6 7
use owo_colors::colors::CustomColor; use owo_colors::OwoColorize; fn main() { println!("{}", "custom purple".fg::<CustomColor<141, 59, 212>>()); println!("{}", "custom green".fg_rgb::<50, 209, 42>()); }