/** @type {import('tailwindcss').Config} */ export default { content: ["./index.html", "./src/**/*.{ts,tsx}"], theme: { extend: { colors: { brand: { 50: "#ecfdf5", 100: "#d1fae5", 200: "#a7f3d0", 300: "#6ee7b7", 400: "#34d399", 500: "#10b981", 600: "#059669", 700: "#047857", 800: "#065f46", 900: "#064e3b", }, }, fontFamily: { sans: [ "Inter", "system-ui", "-apple-system", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "PingFang SC", "Microsoft YaHei", "sans-serif", ], }, boxShadow: { card: "0 1px 2px rgba(16,24,40,0.04), 0 4px 16px -8px rgba(16,24,40,0.10)", "card-hover": "0 10px 30px -10px rgba(16,24,40,0.18)", glow: "0 12px 40px -12px rgba(5,150,105,0.45)", }, borderRadius: { "2xl": "1rem", "3xl": "1.5rem", }, keyframes: { "fade-up": { "0%": { opacity: "0", transform: "translateY(8px)" }, "100%": { opacity: "1", transform: "translateY(0)" }, }, }, animation: { "fade-up": "fade-up 0.4s ease-out both", }, }, }, plugins: [], };