craftyjs.github.com

Crafty.toRGB

public String Crafty.scene(String hex[, Number alpha])

hex
a 6 character hex number string representing RGB color
alpha
The alpha value.

Get a rgb string or rgba string (if alpha presents).

Example

Crafty.toRGB("ffffff"); // rgb(255,255,255)
Crafty.toRGB("#ffffff"); // rgb(255,255,255)
Crafty.toRGB("ffffff", .5); // rgba(255,255,255,0.5)

See Also