You are here

public function ColorHSL::toHex in Color Field 8.2

Get the color as a hex instance.

Return value

\Drupal\color_field\ColorHex The color as a hex instance.

Overrides ColorInterface::toHex

File

src/ColorHSL.php, line 117

Class

ColorHSL
RGB represents the RGB color format.

Namespace

Drupal\color_field

Code

public function toHex() {
  return $this
    ->toRGB()
    ->toHex();
}