This commit is contained in:
liuziting
2026-01-21 15:33:08 +08:00
parent 5aefe0fa59
commit 52b059fe1e
14 changed files with 3589 additions and 1 deletions

15
tailwind.config.js Normal file
View File

@@ -0,0 +1,15 @@
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'ny-red': '#C41E3A', // New Year Red
'ny-gold': '#FFD700', // New Year Gold
},
},
},
plugins: [],
}