22 lines
415 B
TypeScript
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;
|