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
The docs give examples of various forms of Color.rgb() with 3 arguments, but never give an example of specifying an alpha value in the constructor. They do give the example Color('#7743CE').alpha(0.5) but nothing like Color.rgb([0x77, 0x43, 0xCE, 0.5]).
Also, there are no examples of construction from non-RGB color spaces. Color.hsl(200,80,70) works but is never mentioned.
The text was updated successfully, but these errors were encountered:
The docs give examples of various forms of
Color.rgb()
with 3 arguments, but never give an example of specifying an alpha value in the constructor. They do give the exampleColor('#7743CE').alpha(0.5)
but nothing likeColor.rgb([0x77, 0x43, 0xCE, 0.5])
.Also, there are no examples of construction from non-RGB color spaces.
Color.hsl(200,80,70)
works but is never mentioned.The text was updated successfully, but these errors were encountered: