So, I was curious if I could do this and it is a rather easy process.
1st: You need to convert hex to rgb of both colors
2nd: Grab the average of the r,g and the b values of both colors
3rd: Convert the new rgb to next
//functions
function rgb2html($r, $g=-1, $b=-1)
{
if (is_array($r) && sizeof($r) == 3)
list($r, $g, $b) = $r;
$r = intval($r); $g = intval($g);
$b = intval($b);
$r = dechex($r<0?0:($r>255?255:$r));
$g = dechex($g<0?0:($g>255?255:$g));
$b = dechex($b<0?0:($b>255?255:$b));
$color = (strlen($r) < 2?'0':'').$r;
$color .= (strlen($g) < 2?'0':'').$g;
$color .= (strlen($b) < 2?'0':'').$b;
return $color;
}
function average($input) {
return array_sum($input) / count($input);
}
function html2rgb($color)
{
if ($color[0] == '#')
$color = substr($color, 1);
if (strlen($color) == 6)
list($r, $g, $b) = array($color[0].$color[1],
$color[2].$color[3],
$color[4].$color[5]);
elseif (strlen($color) == 3)
list($r, $g, $b) = array($color[0].$color[0], $color[1].$color[1], $color[2].$color[2]);
else
return false;
$r = hexdec($r); $g = hexdec($g); $b = hexdec($b);
return array($r, $g, $b);
}
function avg_hex($hex_from,$hex_to){
$rgb_from = html2rgb($hex_from);
$rgb_to = html2rgb($hex_to);
$avg_r = average(array($rgb_from[0],$rgb_to[0]));
$avg_g = average(array($rgb_from[1],$rgb_to[1]));
$avg_b = average(array($rgb_from[2],$rgb_to[2]));
$hex_avg = rgb2html($avg_r, $avg_g, $avg_b);
return $hex_avg;
}
$hex_from = "007ca5";
$hex_to = "005b79";
$avg = avg_hex($hex_from, $hex_to);
echo "<div style=\"width:300px;height:50px;background-color:#$hex_from;\">Hex From</div>";
echo "<div style=\"width:300px;height:50px;background-color:#$avg;\">Hex Average</div>";
echo "<div style=\"width:300px;height:50px;background-color:#$hex_to;\">Hex To</div>";
//sample