Files
ui-kit/src/lib/tokens.ts
T
Jason Stedwell 822d8e41e6
ci / build-and-design (push) Failing after 13s
visual upgrade
2026-07-23 04:23:19 -05:00

12 lines
317 B
TypeScript
Executable File

import source from "./tokens.json";
/** Canonical brand values are maintained in tokens.json. */
export const tokens = {
...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;