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