tinterm 0.2.0

A powerful library for vibrant solid and gradient text with shimmer animations in terminal outputs.
Documentation
use tinterm::*;

fn main() {
    println!("Testing shimmer animation:");
    println!("Watch the text below for a moving bright highlight...\n");

    let shimmer = "★ SHIMMERING TEXT ★".shimmer(Color::GOLD, None).speed(200);

    print!("Animating: ");
    shimmer.animate(5);

    println!("\nShine effect:");
    print!("Animating: ");
    let shine = "✨ SHINING TEXT ✨".shine(Color::CYAN).speed(180);
    shine.animate(3);

    println!("\nGlow effect:");
    print!("Animating: ");
    let glow = "💫 GLOWING TEXT 💫".glow(Color::PURPLE, 200).speed(250);
    glow.animate(4);

    println!("\nAnimation test complete!");
}