UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

11 lines (10 loc) 311 B
import { manipulateHsl, hslShiftSaturation } from '../util'; /** * Increases the intensity of a color. */ export default function saturate(color, amount) { return manipulateHsl(color, function (hsl) { return hslShiftSaturation(hsl, amount > 0 ? amount : 0); }); } //# sourceMappingURL=saturate.js.map