Appearance
function shade(hex, weight): string;
Mixes a hex color with black by weight (0–1) to produce a shade.
weight
hex
string
number
shade('#336699', 0.5) // => '#1a334c'
1.0.0