Macro skittles::yellow [] [src]

macro_rules! yellow {
    ( $($input:tt)* ) => { ... };
}

Colors the output string yellow.

let name = "Skittles";

yellow!("Taste the rainbow...");
yellow!("{} - Taste the rainbow...", name);