addseed-ux-admin/tailwind.config.ts

21 lines
385 B
TypeScript
Raw Normal View History

2024-06-05 16:39:56 +08:00
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: [],
};