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

    Type Alias ColorPaletteShade

    Represents a single shade in a color palette, containing information about its color properties.

    type ColorPaletteShade = {
        chromakit: string;
        color: OKLChColor;
        isBase: boolean;
        number: number;
        oklch: string;
        rgb: string;
    }
    Index

    Properties

    chromakit: string

    A string representation compatible with the Chromakit format.

    color: OKLChColor

    The color object represented in the OKLCh color space.

    isBase: boolean

    Indicates if this shade is the base color of the palette.

    number: number

    The numerical identifier for the shade in the palette.

    oklch: string

    The OKLCh string representation of the color.

    rgb: string

    The RGB representation of the color in string format.