Esempio n. 1
0
 public static function hslaSaturation($hsla, $adjustment)
 {
     $hsla = explode(",", $hsla);
     $a = array_pop($hsla);
     $hsl = implode(",", $hsla);
     $hsl = Adjust::hslSaturation($hsl, $adjustment);
     return $hsl . "," . $a;
 }