2026-07-23 04:23:19 -05:00
|
|
|
import source from "./tokens.json";
|
|
|
|
|
|
|
|
|
|
/** Canonical brand values are maintained in tokens.json. */
|
2026-07-16 00:36:53 -05:00
|
|
|
export const tokens = {
|
2026-07-23 04:23:19 -05:00
|
|
|
...source,
|
|
|
|
|
/** Backward-compatible default palette. Prefer themes for mode-aware work. */
|
|
|
|
|
color: source.color.dark,
|
|
|
|
|
themes: source.color,
|
2026-07-16 00:36:53 -05:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
|
|
export type Tokens = typeof tokens;
|