I'm using SASS HSL color functions to get individual values from HEX color. At the same time I'm entering the same HEX value into Mac color picker. But the resulting saturation value from SASS color function and Mac color picker are different. Why is that?
Here's the SASS code with the results:
$color: #3e8fcb;
@debug $color;
@debug 'Hue' round( hue($color) );
@debug "Sat" round( saturation($color) );
@debug "Lht" round( lightness($color) );
And here's the Mac color picker:
As you can see the's the difference in saturation:
- SASS: 58%
- Mac color picker: 69%
Why?