tinterm 0.2.0

A powerful library for vibrant solid and gradient text with shimmer animations in terminal outputs.
Documentation
1
2
3
4
5
6
7
use tinterm::*;

fn main() {
    println!("{}", "Test".color(Color::RED));
    println!("{}", "Test".gradient(Color::RED, Color::BLUE, None));
    println!("{}", "Test".shimmer(Color::GOLD, None).static_render());
}