export function tokensToCss(tokens: Record): string { return Object.entries(tokens) .map(([key, value]) => `--${key}: ${value}`) .join("; "); }