packages/ui/docs/variable-catalog.md
This is the operational companion to design-token-system.md. It tells humans and AI which public variable to choose, which CSS property it belongs to, and which historical names are tooling-only.
The machine-readable source of truth is scripts/theme-contract.ts. If this document and the manifest disagree,
the contract checker fails.
Choose a variable in this order:
stable Cherry Studio product role only when Shadcn has no equivalent product concept.For Tailwind components, prefer the semantic utility generated from the variable. For authored CSS, reference the official or stable product custom property directly.
Never choose a variable because its current color happens to look right. Choose it because its semantic role and CSS property match.
| Layer | Authored source | May depend on | Composition or public entry |
|---|---|---|---|
| Foundation values | tokens/** | primitives and other foundation values | styles/tokens.css |
| Controlled runtime inputs | theme-input.css | foundation values | internal contract.css composition |
| Official semantics | shadcn.css | foundation values and registered runtime inputs | internal contract.css composition |
| Product semantics | product.css | official semantics and internal --cs-* providers | internal contract.css composition |
| Tailwind adapter | generated theme.css | official and product semantics | styles/theme.css |
| Migration policy | scripts/migrations/shadcn-v2.json | official and product semantics | tooling only; no runtime layer |
The shared dependency direction is one-way. A lower shared layer must never reference --color-*, host-local
--app-*, or a legacy variable.
contract.css is an internal composition layer, not an exported package entry. Consumers that need the complete
contract use styles/theme.css.
The current registered runtime inputs are --cs-theme-primary and --cs-theme-primary-foreground. Host theme
logic writes them as a pair, deriving the foreground for contrast; only the semantic layer may consume them.
They are not stable product variables, component APIs, or Tailwind colors.
Renderer-only runtime inputs use the owner-local --app-* namespace instead of the shared --cs-* namespace.
The current examples are --app-user-font-family and --app-user-code-font-family, both owned and consumed by
the renderer's font setup.
All other shared --cs-* variables are internal value providers. Public semantics are unprefixed: the official
and product inventories remain separate in the machine contract, but consumers use one canonical namespace.
Component, page, and Electron-shell custom properties are a separate ownership category:
| Owner | Placement | Shared contract treatment |
|---|---|---|
| Component | Component stylesheet or scoped style | Keep private; do not generate globally |
| Page/feature | Page or feature stylesheet | Keep private; do not generate globally |
| Electron/App Shell | Dedicated renderer host stylesheet; --app-* is allowed | Keep private; do not put in the generic Tailwind entry |
The migration registry's historical --app-* entries are retired semantic bridges, not a namespace-wide ban on
genuine host-local variables.
The Renderer Sidebar's active-row and glow custom properties are scoped by
src/renderer/components/Sidebar/Sidebar.css. They remain private implementation details even though the Sidebar
appears throughout the main App Shell; visual reach through one owner does not make them cross-package semantics.
Official variables are unprefixed so Shadcn tooling and compatible themes such as TweakCN can provide them.
| Surface | Foreground | Intended properties | Tailwind example |
|---|---|---|---|
--background | --foreground | background-color / color | bg-background text-foreground |
--card | --card-foreground | grouped content surface / content | bg-card text-card-foreground |
--popover | --popover-foreground | floating surface / content | bg-popover text-popover-foreground |
--primary | --primary-foreground | primary fill / content on that fill | bg-primary text-primary-foreground |
--secondary | --secondary-foreground | secondary fill / content on that fill | bg-secondary text-secondary-foreground |
--muted | --muted-foreground | quiet fill / secondary readable content | bg-muted text-muted-foreground |
--accent | --accent-foreground | selected or hovered fill / content | bg-accent text-accent-foreground |
--destructive | --destructive-foreground | dangerous action fill / content | bg-destructive text-destructive-foreground |
--sidebar | --sidebar-foreground | sidebar zone / default sidebar content | bg-sidebar text-sidebar-foreground |
--sidebar-primary | --sidebar-primary-foreground | primary sidebar action / content | bg-sidebar-primary text-sidebar-primary-foreground |
--sidebar-accent | --sidebar-accent-foreground | selected sidebar row / content | bg-sidebar-accent text-sidebar-accent-foreground |
Always apply a surface with its paired foreground when the component owns both properties. Do not assume white, black, or the page foreground will have sufficient contrast.
| Variable | Intended property |
|---|---|
--border | Default border-color and divider color |
--input | Input and control border color |
--ring | Keyboard focus ring or outline color |
--sidebar-border | Sidebar divider and boundary color |
--sidebar-ring | Focus ring inside the sidebar zone |
--chart-1 | First categorical data series |
--chart-2 | Second categorical data series |
--chart-3 | Third categorical data series |
--chart-4 | Fourth categorical data series |
--chart-5 | Fifth categorical data series |
--radius | Canonical Shadcn radius input; Tailwind radii derive from it |
The standard Tailwind adapter derives radius-sm through radius-4xl from --radius with the Shadcn
multipliers. Cherry's smaller 4xs through xs aliases and round alias are compatibility extensions, not
inputs to the semantic contract.
Stable product variables are allowed in new code when no official Shadcn role expresses the product concept.
| Variable | Intended property and role |
|---|---|
--background-subtle | Very quiet product-wide surface background |
--foreground-tertiary | Low-emphasis metadata, empty-state copy, and quiet icon color |
--foreground-disabled | Disabled or unavailable foreground color |
--border-subtle | Very quiet border-color |
--border-strong | Higher-emphasis structural border-color |
--border-selected | Selected-state border-color; focus remains --ring |
--link | Clickable text color; independent default blue, separate from --primary |
Each family exposes a strong accent, a subtle surface pair, and a border:
| Intent | Strong accent | Subtle pair | Border |
|---|---|---|---|
| Success | --success | --success-subtle / --success-subtle-foreground | --success-border |
| Warning | --warning | --warning-subtle / --warning-subtle-foreground | --warning-border |
| Info | --info | --info-subtle / --info-subtle-foreground | --info-border |
| Error | --error | --error-subtle / --error-subtle-foreground | --error-border |
Use --destructive for a dangerous action. Use the --error* family for error feedback or validation state.
| Domain | Variables | Intended properties |
|---|---|---|
| Code blocks | --code-block | Block code background-color |
| Inline code | --inline-code, --inline-code-foreground | Inline code background-color / color |
| References | --reference, --reference-foreground, --reference-subtle | Reference surface, content, and quiet surface variant |
| Search highlights | --highlight, --highlight-foreground, --highlight-accent | Match surface, content, and active-match surface |
| User message | --chat-user | User-message surface |
Product colors are not automatically Tailwind colors. Only names in CHERRY_PRODUCT_COLOR_TOKENS generate
utilities; custom-CSS domains such as rich text use the matching unprefixed variable directly.
Unpaired product backgrounds retain the consuming component's existing semantic foreground. Add a shared foreground only after concrete consumers establish a repeated contrast invariant.
Migration policy is recorded only in scripts/migrations/shadcn-v2.json. A migration source may still exist in an
excluded internal provider such as tokens/**, but it is not a public role, is not part of
CHERRY_PRODUCT_VARIABLE_TOKENS, and does not gain Tailwind exposure through that registry entry. An exact rule
may point to an official or stable product variable. A review, contextual, or preserve rule may intentionally
have no target when the old value belongs to a component, feature, host, or one-off visual implementation.
Do not recreate a shared runtime variable merely to give migration tooling a destination. Promote a historical role only after semantic review establishes a repeated product invariant, an intended CSS property, concrete consumers, and any required surface/foreground pair.
Preferred component usage:
<section className="bg-card text-card-foreground border-border" />
<aside className="bg-sidebar text-sidebar-foreground" />
<div className="bg-success-subtle text-success-subtle-foreground border-success-border" />
Preferred custom CSS usage:
.rich-text a {
color: var(--link);
}
.reference {
color: var(--reference-foreground);
background-color: var(--reference);
}
Do not author runtime styles against --color-*. Those variables are Tailwind adapter output. Do not recreate or
consume the historical --app-* semantic bridges or legacy names in the migration registry. Genuine App Shell
variables must stay in a dedicated host-owned stylesheet and must not masquerade as shared theme semantics.
Before adding a variable:
theme-contract.ts; add Tailwind exposure only when semantic utilities are required.theme:build, then pnpm --filter @cherrystudio/ui theme:check; the check also covers generated output,
migration rules, and the renderer migration boundary.When generating or refactoring UI code:
stable product variables from this catalog;--cs-* providers or host-written --cs-theme-* inputs from component code;theme.css directly;