Trevixal API
    Preparing search index...

    Interface ThemeSnapshot

    The palette an export carries: what the tokens resolve to right now.

    interface ThemeSnapshot {
        preset: string | null;
        scheme: "light" | "dark";
        tokens: Readonly<Record<string, string>>;
    }
    Index
    preset: string | null

    The preset in force, or null for the plain light or dark palette.

    scheme: "light" | "dark"

    The ground the palette sits on, decided by how light color-bg is.

    tokens: Readonly<Record<string, string>>

    Token values keyed by name without the --tvx- prefix.