Jyxo\Color::setBlue PHP Method

setBlue() public method

Sets the blue component luminance.
public setBlue ( integer | string $blue ) : self
$blue integer | string Component luminance
return self
    public function setBlue($blue) : self
    {
        $this->blue = $this->toInt($blue);
        return $this;
    }