Files
ui-kit/src/lib/tokens.ts
T

12 lines
317 B
TypeScript
Raw Normal View History

2026-07-23 04:23:19 -05:00
import source from "./tokens.json";
/** Canonical brand values are maintained in tokens.json. */
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,
} as const;
export type Tokens = typeof tokens;