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
When applied to CSS, a color with an alpha of 0 will be applied as "transparent". If a color is null, "inherit" will be applied instead. Otherwise, the color is typically applied with RGBA(red,green,blue,alpha).
Usage
var aColor = UI.makeColor ( 255, 0, 0, 1.0 );
//aColor will be red.