This commit is contained in:
yml2213
2026-08-20 14:17:59 +08:00
commit d591df5033
34 changed files with 7555 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/** @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: [],
}