@OPEN-KAPPA/COLORS
    Preparing search index...

    Type Alias CssPalette<C>

    Generic palette output type. It matches the usual Tailwind CSS palete format.

    type CssPalette<C extends Color = Color> = {
        "100": C;
        "200": C;
        "300": C;
        "400": C;
        "50": C;
        "500": C;
        "600": C;
        "700": C;
        "800": C;
        "900": C;
        "950": C;
    }

    Type Parameters

    Index

    Properties

    "100": C

    Background highlighted/selected element.

    "200": C

    Borders & Dividers.

    "300": C

    Borders & Dividers more visible or hover of 100/200.

    "400": C

    Brand, non active icons, muted text.

    "50": C

    Backgrounds / Ultra-light tints.

    "500": C

    Base Color: Brand, buttons, active icons, link, titles.

    "600": C

    Brand, hover or focus states.

    "700": C

    Secondary text & contrast, subtitles, icons on white.

    "800": C

    Secondary text & contrast, paragraph text.

    "900": C

    Main text and dark background, main title, high contrast.

    "950": C

    Deep dark background, critical text, dark mode base.