use stylic::{style, Stylize}; fn main() { for i in 0..=255 { println!("{}", style(i).fg(i)); } }