mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-04 13:42:27 +08:00
24 lines
418 B
JavaScript
24 lines
418 B
JavaScript
module.exports = {
|
|
content: ['./index.html', './src/**/*.{vue,ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
zIndex: {
|
|
'-1': '-1',
|
|
},
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#0960bd',
|
|
// dark: primaryColorDark,
|
|
},
|
|
},
|
|
screens: {
|
|
sm: '576px',
|
|
md: '768px',
|
|
lg: '992px',
|
|
xl: '1200px',
|
|
'2xl': '1600px',
|
|
},
|
|
},
|
|
},
|
|
};
|