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

    Interface ThemeStudioToken

    Token entry matching the shape in css-token-manifest.json. Only the fields needed by the studio are declared here.

    interface ThemeStudioToken {
        definitions?: readonly {
            file: string;
            line: number;
            mode: string;
            owner: string;
            package: string;
        }[];
        description: string;
        name: string;
        namespace: string;
        scope: string;
        type: string;
        values: { dark?: string; light?: string };
    }
    Index

    Properties

    definitions?: readonly {
        file: string;
        line: number;
        mode: string;
        owner: string;
        package: string;
    }[]

    Definition sites

    description: string

    Human-readable purpose description

    name: string

    CSS custom property name, e.g. --ui-accent

    namespace: string

    Namespace prefix, e.g. "ui", "cv", "kb"

    scope: string

    "global" or "component"

    type: string

    Value type: color, length, font, shadow, number, string, reference, keyword

    values: { dark?: string; light?: string }

    Default values per colour scheme