Macro term_ansi::cyan

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

Applies cyan color to the provided format string.

§Arguments

  • args - The format string and its arguments.

§Example

use term_ansi::*;

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