Here is a compact function to convert HTML color to RGB:

function html2rgb($color){   
     return array(hexdec(substr($color, 0, 2)), hexdec(substr($color, 2, 2)), hexdec(substr($color, 4, 2)));
}