Same name and namespace in other branches
  1. 8.x-2.x src/ColorCMY.php \Drupal\color_field\ColorCMY::toHsl() 1 comment

Overrides ColorInterface::toHsl

1 method overrides ColorCMY::toHsl()
ColorCMYK::toHsl in src/ColorCMYK.php
Get the color as an HSL instance.

File

src/ColorCMY.php, line 128

Class

ColorCMY
ColorCMY represents the CMY color format.

Namespace

Drupal\color_field

Code

public function toHsl() : ColorHSL {
    return $this->toRgb()
        ->toHsl();
}