toLabColor static method

LabColor toLabColor(
  1. ColorModel color
)

Converts a color from any color space to HSL.

Implementation

static LabColor toLabColor(ColorModel color) => rgbToLab(color.toRgbColor());