iloom-flatten/tailwind.config.js

16 lines
216 B
JavaScript
Raw Permalink Normal View History

module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./index.html'
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#3b82f6',
}
}
},
plugins: []
};