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()); }