Appearance
function lighten(hex, amount): string;
Lightens a hex color by increasing its HSL lightness by amount percent.
amount
hex
string
number
lighten('#336699', 20) // => '#5588bb'
1.0.0