You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Decrease the lightness of a color by an absolute amount.
56
+
> Decrease the lightness of a color in the HSL color space by an absolute amount.
57
57
58
58
Parameters:
59
59
@@ -191,7 +191,7 @@ rgba(75, 25, 0, 0.75)
191
191
192
192
### greyscale
193
193
194
-
> Remove all saturation from a color; the same as calling `desaturate(@color, 100%)`.
194
+
> Remove all saturation from a color in the HSL color space; the same as calling `desaturate(@color, 100%)`.
195
195
196
196
Because the saturation is not affected by hue, the resulting color mapping may be somewhat dull or muddy; [`luma`](#color-channel-luma) may provide a better result as it extracts perceptual rather than linear brightness, for example `greyscale('#0000ff')` will return the same value as `greyscale('#00ff00')`, though they appear quite different in brightness to the human eye.
0 commit comments