stylic 0.3.1

A simple, fast library for styling text with ANSI escape codes
Documentation
1
2
3
4
5
6
7
use stylic::Styleable;

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