1
2
3
4
5
6
7
use stylic::{style, Stylize};

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