@kcuf/mere-color
Version:
Mere color utils for generating, manipulation, a11y purposes.
11 lines (10 loc) • 316 B
JavaScript
import { manipulateHsl, hslShiftSaturation } from '../util';
/**
* Decreases the intensity of a color.
*/
export default function desaturate(color, amount) {
return manipulateHsl(color, function (hsl) {
return hslShiftSaturation(hsl, amount > 0 ? -amount : 0);
});
}
//# sourceMappingURL=desaturate.js.map