Files
openwork/tailwind.config.ts
Omar McAdam 4689852686 feat: add radix color theming (#133)
* chore: migrate tailwind v4 and add theme scaffolding

* feat: integrate radix colors and theme switching

* pnpm version
2026-01-20 13:56:44 -08:00

15 lines
330 B
TypeScript

import { radixColors, tailwindSafelist } from './src/styles/tailwind-colors';
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
darkMode: 'class',
safelist: [
tailwindSafelist
],
theme: {
// OVERRIDE the base theme completely instead of extending it
colors: {
...radixColors,
}
}
};