Files
openwork/packages/app/tailwind.config.ts
Omar McAdam fbb551f649 refactor: split UI from Tauri shell (#182)
* refactor: split UI from Tauri shell

* chore: restore workflow paths

* chore: add root workflow for tauri paths

* chore: update workflows for tauri paths

* chore: remove root workflow

* docs: update setup commands

* refactor: rename app and desktop packages
2026-01-21 20:50:39 -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,
}
}
};