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