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
Attempting any conversion from hsl or hsv results in the error. For example, I can convert black from rgb to hsl, but not vice versa:
convert.rgb.hsl(0, 0, 0);
_ConversionResult ([0, 0, 0, 100])
convert.hsl.rgb(0, 0, 0);
"Error: Expected a value of type 'ListBase<num>', but got one of type 'List<num>'"
I can't get any conversion from hsl or hsv to give me anything other than the above error. The following returns null:
convert.hsv.rgb(convert.ListBase(0, 100, 100))
The text was updated successfully, but these errors were encountered:
Attempting any conversion from hsl or hsv results in the error. For example, I can convert black from rgb to hsl, but not vice versa:
I can't get any conversion from hsl or hsv to give me anything other than the above error. The following returns
null
:convert.hsv.rgb(convert.ListBase(0, 100, 100))
The text was updated successfully, but these errors were encountered: