saturation (value) {
        const hsl = this[parsedKey].toHsl();
        hsl.s = value * 100;
        this[parsedKey] = colord(hsl);
        return this;