Macro skittles::dimmed [] [src]

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

Dims the color of the output string.

let name = "Skittles";

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