You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
418 B
23 lines
418 B
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',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|