Lines Matching refs:hex
72 function hex2rgb($hex) { argument
74 $hex = str_replace('#', '', $hex);
77 if(strlen($hex) == 3){
78 $hex = substr($hex,0,1).
79 substr($hex,0,1).
80 substr($hex,1,1).
81 substr($hex,1,1).
82 substr($hex,2,1).
83 substr($hex,2,1);
88 'r' => hexdec(substr($hex, 0, 2)),
89 'g' => hexdec(substr($hex, 2, 2)),
90 'b' => hexdec(substr($hex, 4, 2))