toHsl method

PdfColorHsl toHsl()

Converts this color to HSL.

Implementation

PdfColorHsl toHsl() {
  return PdfColorHsl.fromRgb(red, green, blue, alpha);
}