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
There is a deprecation warning when compiling SASS:
The operation #A9A9A9 plus 55is deprecated and will be an error in future versions. Consider using Sass's color functions instead. http://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions
There is a similar warning for the minus function.
Since the generated output is #e0e0e0, the addition function is adding 55 to each RGB value. This can be replaced with the sass function adjust-color(#A9A9A9, $red: 55, $green: 55, $blue: 55)source
The text was updated successfully, but these errors were encountered:
There is a deprecation warning when compiling SASS:
The operation
#A9A9A9 plus 55is deprecated and will be an error in future versions. Consider using Sass's color functions instead. http://sass-lang.com/documentation/Sass/Script/Functions.html#other_color_functions
There is a similar warning for the minus function.
Since the generated output is
#e0e0e0
, the addition function is adding 55 to each RGB value. This can be replaced with the sass functionadjust-color(#A9A9A9, $red: 55, $green: 55, $blue: 55)
sourceThe text was updated successfully, but these errors were encountered: