module.exports = function (color, ratio) {
    var l = color.lightness();
    l -= l * ratio;
    color.lightness(l);
    return color;