Color Object
Purpose:
Sets the primary color to draw a object
Syntax:
but.color = color.predefined
or
but.color = color.rgb(255,255,255) // will set alpha to 255
but.color = color.argb(50,255,255,255) // alpha being set to 50
Comments:
WHIT RED GREEN ORANGE GOLD BLUE CYAN YELLOW DKGRAY LTGRAY GRAY BLACK MAGENTA
Example:
but.color = color.ARGB(20,40,50,80)
.
.