Files
nosys_web/tailwind.config.js
2026-01-04 01:33:29 +10:00

17 lines
308 B
JavaScript

export default {
content: [
'./index.html',
'./src/**/*.{vue,js,jsx}'
],
darkMode: ['class'],
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
foreground: 'rgb(var(--foreground) / <alpha-value>)',
}
}
},
plugins: []
}