extra_colors/
extra_colors.rs

1use owo_colors::{OwoColorize, colors::xterm};
2
3fn main() {
4    println!("{}", "Electric violet".fg::<xterm::ElectricViolet>());
5    println!("{}", "Matrix".fg::<xterm::MatrixPink>());
6    println!("{}", "Flirt".fg::<xterm::Flirt>());
7    println!("{}", "Cyan2".fg::<xterm::Cyan>());
8    println!("{}", "Cyan".fg::<xterm::UserCyan>());
9    println!("{}", "Lime".fg::<xterm::Lime>());
10    println!("{}", "Jade".fg::<xterm::Jade>());
11    println!("{}", "Reef".fg::<xterm::Mauve>());
12}