dark

Macro dark 

Source
macro_rules! dark {
    ( $str: tt ) => { ... };
    ( $other: expr) => { ... };
}
Expand description

Darkens text. You can combine this with a color to get a dark variant of this color

ยงExample

printlnc!(dark!(green!("This text is dark green")))