mirror of
https://github.com/different-ai/openwork
synced 2026-05-10 17:22:05 +02:00
* chore: migrate tailwind v4 and add theme scaffolding * feat: integrate radix colors and theme switching * pnpm version
15 lines
330 B
TypeScript
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,
|
|
}
|
|
}
|
|
};
|