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
LibSass's scale-color() function output doesn't match that of Dart Sass or Ruby Sass in a number of cases:
scale-color(turquoise, $saturation: 24%, $lightness: -48%)
should be #10867a, is actually #0d897c
scale-color(plum, $saturation: 67%)
should be #f489f4, is actually #e895e8
scale-color(plum, $saturation: 100%)
should be #ff7eff, is actually #ed90ed
There are likely other cases that are invalid as well.
The text was updated successfully, but these errors were encountered:
The ternary operator incorrectly selected the luminance value when it
should have used the saturation. With this fix, the returned values are
as expected per the issue.
Fixessass#2903.
The ternary operator incorrectly selected the luminance value when it
should have used the saturation. With this fix, the returned values are
as expected per the issue.
Fixes#2903.
LibSass's
scale-color()
function output doesn't match that of Dart Sass or Ruby Sass in a number of cases:There are likely other cases that are invalid as well.
The text was updated successfully, but these errors were encountered: