You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Style Dictionary token pipeline has been removed.
The tokens/ directory (3 DTCG JSON files) and scripts/build-tokens.ts
are deleted. Token values now live in src/styles/theme.css as a single
hand-maintained CSS file with @theme inline registration.
Add src/styles/theme.css (558 lines) consolidating all primitives,
semantic light/dark tokens, font-face declarations, body styles,
gradients, and @theme inline block into one file
Add src/styles/tokens.css — standalone @theme inline block for
consumer apps to @reference without pulling in tw-animate-css or
tailwindcss-react-aria-components as devDeps
Move Montserrat variable fonts from assets/fonts/ to src/styles/fonts/
Delete src/styles/global.css (content folded into theme.css)
Add src/colors.ts exporting ColorTeal500 and ColorPurple700 for
consumers needing direct hex values (e.g. SVG logos)
Add scripts/validate-tokens.ts replacing build-tokens.ts — checks
dark-theme token coverage only (no generation step)
Update package.json: remove style-dictionary devDep, replace
build:tokens script with validate:tokens, update exports map
(remove ./tokens/*.css, add ./styles/tokens.css and ./styles/theme.css)
Update CI workflow: build:tokens → validate:tokens in all jobs
Update .storybook/preview.ts to import theme.css
Update .gitignore: remove src/tokens/ entry (no longer generated)