Macro term_ansi::blue

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

Applies blue color to the provided format string.

§Arguments

  • args - The format string and its arguments.

§Example

use term_ansi::*;

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