pallete/
pallete.rs

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