UNPKG

colorizr

Version:
11 lines (8 loc) 256 B
import updater from '~/modules/updater'; import { ColorType } from '~/types'; /** * Increase color saturation */ export default function saturate(input: string, amount: number, format?: ColorType) { return updater('s', '+', format)(input, amount); }