red; } public function getGreen(): int { return $this->green; } public function getBlue(): int { return $this->blue; } public function getAlpha(): int { return $this->alpha; } public function getOpacity(): float { return 1 - $this->alpha / 127; } public function getHex(): string { return sprintf('#%02x%02x%02x', $this->red, $this->green, $this->blue); } public function toArray(): array { return [ 'red' => $this->red, 'green' => $this->green, 'blue' => $this->blue, 'alpha' => $this->alpha, ]; } }