-
-
Notifications
You must be signed in to change notification settings - Fork 18
color_from_hex
Vašek edited this page Feb 10, 2019
·
3 revisions
Returns color from the given hex value
color_from_hex(value)
Argument | Description |
---|---|
string value |
Hue of the given color |
Returns: Color
This function returns the color in the standard Color format from value
in the hex format.
Color col = color_from_hex("#FF0000");
This function will set col
to 255 0 0 255, which is a red.
Back to Color And Alpha