CMYK Convert CMYK colors to HSL. import { fromCMYK } from 'HSL' Array Pass the channels as an array. const cmyk = fromCMYK([ C , M , Y , K ]); Alpha Optionally include an Alpha channel. const cmyka = fromCMYK([ C , M , Y , K , A ]);