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

    Interface LAB

    CIE Lab* color with optional alpha.

    Channel ranges: l 0-100; a -128 to 127 (green-red); b -128 to 127 (blue-yellow); alpha 0-1. Named alpha to avoid colliding with the a channel.

    interface LAB {
        a: number;
        alpha?: number;
        b: number;
        l: number;
    }
    Index

    Properties

    Properties

    a: number

    Green-red axis, -128 to 127.

    alpha?: number

    Optional alpha, 0-1.

    b: number

    Blue-yellow axis, -128 to 127.

    l: number

    Lightness, 0-100.