Same name in other branches
  1. 3.0.x src/ColorRGB.php \Drupal\color_field\ColorRGB::toHex()

Overrides ColorInterface::toHex

File

src/ColorRGB.php, line 115

Class

ColorRGB
RGB represents the RGB color format.

Namespace

Drupal\color_field

Code

public function toHex() {
    return new ColorHex($this->getRed() << 16 | $this->getGreen() << 8 | $this->getBlue(), $this->getOpacity());
}