Files
WonderQ-Project/WonderQ-MiniAPP/tailwind.config.ts
2026-08-11 19:19:11 +08:00

22 lines
415 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{vue,ts,json}"],
theme: {
extend: {
colors: {
wq: {
ink: "#1f2c25",
muted: "#718073",
green: "#245c45",
gold: "#c88b32",
surface: "#f7f3ea",
},
},
maxWidth: {
phone: "430px",
},
},
},
} satisfies Config;