@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface ThemePaletteGroup

    A theme palette swatch group. Each group has a label (e.g. "Primary") and an array of hex colour strings at different luminosity stops.

    interface ThemePaletteGroup {
        colors: readonly string[];
        label: string;
    }
    Index

    Properties

    Properties

    colors: readonly string[]

    Array of hex colour strings from lightest to darkest.

    label: string

    Human-readable name for the swatch row.