[eluser]Kinsbane[/eluser]
Oh shoot!
I also forgot to mention earlier that I don't want the number of possible colors that an event can have to be limited to 16 per month.
I would like to use a random color for each event, and found this function for generating random HTML color hex codes. I'm hoping to interpret this into the Calendar somehow..
Code:
function random_color()
{
mt_srand((double)microtime()*1000000);
$c = '';
while(strlen($c)<6){
$c .= sprintf("#X", mt_rand(0, 255));
}
return $c;
}