@ascentbv/ts-common - v1.0.123
    Preparing search index...

    Type Alias HSL

    Represents a color in Hue-Saturation-Lightness format. Hue: 0–360, Saturation and Lightness: 0–100.

    type HSL = {
        h: number;
        s: number;
        l: number;
    }
    Index

    Properties

    h s l

    Properties

    h: number
    s: number
    l: number