@dragonspark/chroma-kit
    Preparing search index...

    Type Alias Illuminant

    Represents an illuminant with specific properties defining its chromaticity coordinates and name.

    This type is used to describe standard illuminants in color science, typically characterized by their x, y, and z chromaticity coordinates and a name identifier.

    type Illuminant = {
        name: string;
        xR: number;
        yR: number;
        zR: number;
    }
    Index

    Properties

    Properties

    name: string
    xR: number
    yR: number
    zR: number