titanscssc::lib_darken PHP Method

lib_darken() protected method

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