use tinterm::*;
fn main() {
println!("Simple Animation Test");
println!("===================");
println!("\n1. Static shimmer rendering:");
println!("{}", "✨ Static Shimmer ✨".shimmer(Color::GOLD, None).static_render());
println!("\n2. Static shine rendering:");
println!("{}", "⭐ Static Shine ⭐".shine(Color::CYAN).static_render());
println!("\n3. Static glow rendering:");
println!("{}", "💫 Static Glow 💫".glow(Color::PURPLE, 200).static_render());
println!("\n4. Basic colors work:");
println!("{}", "Red Text".color(Color::RED));
println!("{}", "Blue Text".color(Color::BLUE));
println!("{}", "Green Text".color(Color::GREEN));
println!("\n5. Now testing short animation (2 seconds):");
print!("Animating: ");
"SHIMMER".shimmer(Color::RED, None).speed(300).animate(2);
println!("Test complete!");
}