mirror of
https://github.com/different-ai/openwork
synced 2026-05-14 02:56:24 +02:00
* 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
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,
|
|
}
|
|
}
|
|
};
|