21 lines
385 B
TypeScript
21 lines
385 B
TypeScript
|
module.exports = {
|
||
|
mode: 'jit',
|
||
|
purge: ['./public/**/*.html', './src/**/*.{js,jsx,ts,tsx}'],
|
||
|
darkMode: false, // or 'media' or 'class'
|
||
|
theme: {
|
||
|
backgroundColor: (theme) => ({
|
||
|
...theme('colors'),
|
||
|
dark70: 'rgba(0,0,0,.7)',
|
||
|
}),
|
||
|
extend: {
|
||
|
colors: {
|
||
|
primary: '#1677ff',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
variants: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|