Appearance
function darken(hex, amount): string;
Darkens a hex color by decreasing its HSL lightness by amount percent.
amount
hex
string
number
darken('#336699', 20) // => '#112244'
1.0.0