Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (18 loc) · 328 Bytes

File metadata and controls

30 lines (18 loc) · 328 Bytes

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 ]);