第一次上传

This commit is contained in:
xxk
2026-06-11 10:31:24 +08:00
commit cfef094568
1523 changed files with 210650 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{vue,ts}"],
theme: {
extend: {
colors: {
brand: {
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#1d7afc",
600: "#1667d9",
700: "#1456b8",
800: "#1e40af",
900: "#0b2455"
},
ink: "#172033"
},
boxShadow: {
soft: "0 18px 50px rgba(15, 35, 80, 0.10)"
}
}
},
plugins: []
};