@standardbeagle/ux-core - v0.1.0
    Preparing search index...

    Interface ColorFixture

    Single reference color expressed in every supported color space.

    Used by cross-space conversion tests as ground truth. See RGB, HSL, HSV, LAB, OKLCH, Hex.

    interface ColorFixture {
        hex: string;
        hsl: HSL;
        hsv: HSV;
        lab: LAB;
        name: string;
        oklch: OKLCH;
        rgb: RGB;
    }
    Index

    Properties

    Properties

    hex: string

    Canonical Hex form.

    hsl: HSL

    HSL form.

    hsv: HSV

    HSV form.

    lab: LAB

    LAB form.

    name: string

    Human-readable label (e.g. "pure red").

    oklch: OKLCH

    OKLCH form.

    rgb: RGB

    RGB form.