Interface CMYK

The CMYK color model is a subtractive color model used in the printing process. It described four ink palettes: Cyan, Magenta, Yellow, and Black.

interface CMYK {
    c: string | number;
    k: string | number;
    m: string | number;
    y: string | number;
}

Properties

c k m y

Properties

c: string | number
k: string | number
m: string | number
y: string | number