I want an array where each field in the array contains a color code
array(0 => \'#4CFF00\', 1 => \'#FFE97F\')
And I want this to go t
Look at hexdec, dechex and this snippet:
for ($i = 0; $i < 255; $i++) { # here happens some colour-magic }
Cheers,