12 lines
317 B
TypeScript
Executable File
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;
|