Macro term_ansi::yellow

source ·
macro_rules! yellow {
    ($($arg:tt)*) => { ... };
}
Expand description

Applies yellow color to the provided format string.

§Arguments

  • args - The format string and its arguments.

§Example

use term_ansi::*;

println!("{}", yellow!("This is {} text", "yellow"));