Lines Matching defs:blue
26 'blue',
63 'blue' => '#0000FF',
247 private $blue;
309 public static function createFromRgbChannels(int $red, int $green, int $blue): ColorRgb
312 ->setRgbChannels([$red, $green, $blue]);
371 $blue = $this->blue / 255;
373 $max = max($red, $green, $blue);
374 $min = min($red, $green, $blue);
387 $hue = 60 * fmod((($green - $blue) / $d), 6);
388 if ($blue > $green) {
394 $hue = 60 * (($blue - $red) / $d + 2);
398 case $blue:
464 throw new ExceptionCompile("This is not possible, the blue value ({$color2->getBlue()}) with the percentage $weight could not be unmixed. They were not calculated with color mixing.");
618 return $this->blue;
796 [$this->red, $this->green, $this->blue, $this->transparency] = $this->hex2rgb($color);
821 [$this->red, $this->green, $this->blue] = $colorValue;