dogmatic69 / cakephp_google_plugin

bunch of components/helpers and behaviors the use the google api for cool goodies
62 stars 7 forks source link

generate colors so you dont have to pass some in. #3

Open dogmatic69 opened 14 years ago

dogmatic69 commented 14 years ago

some ideas -random colors -map colors to lables

dogmatic69 commented 14 years ago

function randColor() { $letters = "1234567890ABCDEF"; for($i=0;$i<6;$i++) { $pos = rand(0,15); $str .= $letters[$pos]; } return "#".$str; } for($i=1;$i<6;$i++) { echo 'Random Color Text
'; }

imekinox commented 14 years ago

function randColor() { $color = "#"; for($i = 0; $i < 6; $i++) $color = $color . dechex(rand(0,15)); return $color; }

dogmatic69 commented 14 years ago

cool, was just some code i saw on the net... but like you method :)