Files
dachui-mall-web/tailwind.config.js
2026-08-20 14:17:59 +08:00

28 lines
497 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#e93323',
hover: '#d82819',
light: '#fdebe9',
dark: '#b71d10'
},
secondary: {
DEFAULT: '#ff7700',
light: '#fff1e5'
}
},
maxWidth: {
'site': '1240px'
}
},
},
plugins: [],
}