1 2 3 4 5 6 7
use stylic::Styleable; fn main() { for i in 0..=255 { println!("{}", i.styled().fg(i.into())); } }