macro_rules! white {
($($arg:tt)*) => { ... };
}Expand description
Applies white color to the provided format string.
§Arguments
args - The format string and its arguments.
§Example
use term_ansi::*;
println!("{}", white!("This is {} text", "white"));