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