Ok, I had nothing to do so I made you a script. May come in handy for myself too someday 😉
<?php
$rgb=$_GET['color'];
$letter=$_GET['letter'].'.gif';
if (strlen($rgb)==6 && file_exists($letter)) {
$r=hexdec(substr($rgb,0,2));
$g=hexdec(substr($rgb,2,2));
$b=hexdec(substr($rgb,4,2));
} else {
exit();
}
$im=imagecreatefromgif($letter);
imagecolorset($im,0,$r,$g,$b);
header("Content-type: image/gif");
imagegif($im);
imagedestroy($im);
?>