titanscssc::lib_lighten PHP Method

lib_lighten() protected method

protected lib_lighten ( $args )
    protected function lib_lighten($args)
    {
        $color = $this->assertColor($args[0]);
        $amount = 100 * $this->coercePercent($args[1]);
        return $this->adjustHsl($color, 3, $amount);
    }
titanscssc