1) $opacity = 1.0; $output = 'rgba('.implode(",",$rgb).','.$opacity.')'; } else { $output = 'rgb('.implode(",",$rgb).')'; } //Return rgb(a) color string return $output; } } // get values from output modifier $color = $input; if ( true === isset($options) ) { $opacity = $options; } else { $opacity = "0.0"; } // run function $rgba = hex2rgba($color, $opacity); return $rgba;