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