@cartridge-engine/theme
    Preparing search index...

    Interface ThemeDefinition

    A single theme definition — a flat map of key-value pairs plus a unique id.

    interface ThemeDefinition {
        id: string;
        [key: string]: string | boolean;
    }

    Indexable

    • [key: string]: string | boolean

      Flat key-value pairs where values are Ink color names or style booleans.

    Index
    id: string

    Unique identifier for this theme (e.g. "dark", "light").