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
On the toRgbString method, I think it would be useful (at least for me) if there could be an option to get always the alpha value even if that is 1.
Now, if you call the toRgbString method of the red color you get: > var a = tinycolor('red'); > a.toRgbString() < rgb(255, 0, 0)
Would be great if I could do > a.toRgbString(true) < rgba(255, 0, 0, 1)
Many thanks
The text was updated successfully, but these errors were encountered:
On the toRgbString method, I think it would be useful (at least for me) if there could be an option to get always the alpha value even if that is 1.
Now, if you call the toRgbString method of the red color you get:
> var a = tinycolor('red');
> a.toRgbString()
< rgb(255, 0, 0)
Would be great if I could do
> a.toRgbString(true)
< rgba(255, 0, 0, 1)
Many thanks
The text was updated successfully, but these errors were encountered: