Files
CodeNomad/tailwind.config.js
2025-10-28 18:45:39 +00:00

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: [],
}