Hi,
The HikaShop image helper extract the "background" color for the PNG and GIF images.
It allows the thumbnails to have use the transparency of the image.
$bgcolor = $this->_getBackgroundColor($thumb, @$options['background']);
if(in_array($extension,array('gif', 'png'))) {
$palletSize = imagecolorstotal($img);
if($transparentIndex >= 0 && $transparentIndex < $palletSize) {
$trnprt_color = imagecolorsforindex($img, $transparentIndex);
$color = imagecolorallocate($thumb, $trnprt_color['red'], $trnprt_color['green'], $trnprt_color['blue']);
imagecolortransparent($thumb, $color);
imagefill($thumb, 0, 0, $color);
So, I guess that your GIF images have a black background and no transparency.
Regards,