macro_rules! blue { ($($arg:tt)*) => { ... }; }
Applies blue color to the provided format string.
args
use term_ansi::*; println!("{}", blue!("This is {} text", "blue"));