Interface Cmyk

A CMYK representation of a color.

interface Cmyk {
    "0": number;
    "1": number;
    "2": number;
    "3": number;
    [key: number]: number;
}

Hierarchy (View Summary)

Indexable

  • [key: number]: number

Properties

0 1 2 3

Properties

"0": number

The cyan channel of this color in the range [0,1].

"1": number

The magenta channel of this color in the range [0,1].

"2": number

The yellow channel of this color in the range [0,1].

"3": number

The key (black) channel of this color in the range [0,1].