SATURATE
Creates a new color from the specified color by increasing the saturation in the HSL color space.
Syntax
=SATURATE(color, amount)
Arguments
Argument | Type | Description |
---|---|---|
color | Color | The color to change saturation. |
amount | Number | The percentage amount to saturate the given color, from 0 to 1. |
Examples
=SATURATE("#bf4040", 0.3)
→#e51a1aff
Increases the saturation of the color #bf4040ff
by 30%.
Updated 9 months ago