Lager - v5.2.0
    Preparing search index...

    ColorScheme interface.

    This interface defines a color scheme with optional color values for different shades. Each property represents a shade of the color, ranging from 50 to 1000.

    ColorScheme

    interface ColorScheme {
        "100"?: ColorValue;
        "1000"?: ColorValue;
        "200"?: ColorValue;
        "300"?: ColorValue;
        "400"?: ColorValue;
        "50"?: ColorValue;
        "500"?: ColorValue;
        "600"?: ColorValue;
        "700"?: ColorValue;
        "800"?: ColorValue;
        "900"?: ColorValue;
    }
    Index

    Properties

    "100"?: ColorValue

    Optional. A very light shade of the color.

    "1000"?: ColorValue

    Optional. The darkest of dark shade of the color.

    "200"?: ColorValue

    Optional. A light shade of the color.

    "300"?: ColorValue

    Optional. A lighter shade of the color.

    "400"?: ColorValue

    Optional. A medium-light shade of the color.

    "50"?: ColorValue

    Optional. The lightest shade of the color.

    "500"?: ColorValue

    Optional. The base shade of the color.

    "600"?: ColorValue

    Optional. A medium-dark shade of the color.

    "700"?: ColorValue

    Optional. A dark shade of the color.

    "800"?: ColorValue

    Optional. A darker shade of the color.

    "900"?: ColorValue

    Optional. The darkest shade of the color.