I dunno... I was bored...
This script converts Graal RGB colors into the hex color table format and vice versa.
Example of use:
PHP Code:
echo("#FF0000 converted in to RGB: " @ HextoRGB("#ff0000"));
echo("1,0,0 converted to hex is: " @ RGBtoHex(1,0,0));
Would return:
PHP Code:
#FF0000 converted in to RGB: 1,0,0
1,0,0 converted to hex is: #FF0000