first commit

This commit is contained in:
2026-03-20 19:40:17 +08:00
commit 8dcebff7a6
41 changed files with 9322 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
ink: "#111827",
mist: "#eff6ff",
brand: "#2563eb",
accent: "#0f766e",
},
boxShadow: {
panel: "0 20px 45px rgba(15, 23, 42, 0.08)",
},
fontFamily: {
sans: ["Manrope", "Segoe UI", "sans-serif"],
},
},
},
plugins: [],
};
export default config;