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

    Interface OKLCH

    OKLCH color (perceptually uniform lightness/chroma/hue) with optional alpha.

    Channel ranges: l 0-1; c 0-0.4 (values above ~0.37 are typically out of sRGB gamut); h 0-360 degrees; alpha 0-1.

    interface OKLCH {
        alpha?: number;
        c: number;
        h: number;
        l: number;
    }
    Index

    Properties

    Properties

    alpha?: number

    Optional alpha, 0-1.

    c: number

    Chroma, 0-0.4.

    h: number

    Hue in degrees, 0-360.

    l: number

    Lightness, 0-1.