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

    Interface JzAzBzColor

    Represents a color in the JzAzBz color space.

    The JzAzBz color space is a perceptually uniform color space designed to address the limitations of existing color spaces. It provides improved perceptual uniformity, especially for saturated colors and blue hues, and handles high dynamic range (HDR) content better than traditional color spaces.

    interface JzAzBzColor {
        alpha?: number;
        az: number;
        bz: number;
        jz: number;
        space: "jzazbz";
        to: <
            T extends
                | "rgb"
                | "hwb"
                | "hsl"
                | "hsv"
                | "xyz"
                | "lab"
                | "lch"
                | "oklab"
                | "oklch"
                | "jzazbz"
                | "jzczhz",
        >(
            colorSpace: T,
        ) => CreatedColor<T>;
        toCSSString: () => string;
        toString: () => string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alpha?: number

    The alpha (opacity) component (0-1), optional

    az: number

    The green-red component (negative values are green, positive values are red)

    bz: number

    The blue-yellow component (negative values are blue, positive values are yellow)

    jz: number

    The lightness component

    space: "jzazbz"
    to: <
        T extends
            | "rgb"
            | "hwb"
            | "hsl"
            | "hsv"
            | "xyz"
            | "lab"
            | "lch"
            | "oklab"
            | "oklch"
            | "jzazbz"
            | "jzczhz",
    >(
        colorSpace: T,
    ) => CreatedColor<T>
    toCSSString: () => string
    toString: () => string