1 2 3 4 5 6 7
use colored::*; pub fn print_banner(title: &str) { println!("{}", "=".repeat(40).yellow()); println!("{:^40}", title.bright_magenta().bold()); println!("{}", "=".repeat(40).yellow()); }