15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
export default {
|
|
content: ["./src/**/*.{ts,tsx}", "./src/renderer/**/*.html"],
|
|
darkMode: ["class", '[data-theme="dark"]'],
|
|
theme: {
|
|
extend: {
|
|
colors: {},
|
|
spacing: {},
|
|
fontSize: {},
|
|
borderRadius: {},
|
|
boxShadow: {},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|