2026-05-16 19:17:34 +07:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
export default {
|
|
|
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
2026-06-12 23:00:52 +07:00
|
|
|
fontFamily: {
|
|
|
|
|
sans: ["Poppins", "ui-sans-serif", "system-ui", "-apple-system", "sans-serif"],
|
|
|
|
|
},
|
2026-05-16 19:17:34 +07:00
|
|
|
colors: {
|
2026-06-12 23:00:52 +07:00
|
|
|
border: "oklch(var(--border))",
|
|
|
|
|
input: "oklch(var(--input))",
|
|
|
|
|
ring: "oklch(var(--ring))",
|
|
|
|
|
background: "oklch(var(--background))",
|
|
|
|
|
foreground: "oklch(var(--foreground))",
|
|
|
|
|
"primary-soft": "oklch(var(--primary-soft))",
|
|
|
|
|
"primary-glow": "oklch(var(--primary-glow))",
|
|
|
|
|
"accent-glow": "oklch(var(--accent-glow))",
|
|
|
|
|
primary: { DEFAULT: "oklch(var(--primary))", foreground: "oklch(var(--primary-foreground))" },
|
|
|
|
|
secondary: { DEFAULT: "oklch(var(--secondary))", foreground: "oklch(var(--secondary-foreground))" },
|
|
|
|
|
muted: { DEFAULT: "oklch(var(--muted))", foreground: "oklch(var(--muted-foreground))" },
|
|
|
|
|
accent: { DEFAULT: "oklch(var(--accent))", foreground: "oklch(var(--accent-foreground))" },
|
|
|
|
|
destructive: { DEFAULT: "oklch(var(--destructive))", foreground: "oklch(var(--destructive-foreground))" },
|
|
|
|
|
card: { DEFAULT: "oklch(var(--card))", foreground: "oklch(var(--card-foreground))" },
|
2026-05-16 19:17:34 +07:00
|
|
|
},
|
|
|
|
|
borderRadius: {
|
|
|
|
|
lg: "var(--radius)",
|
|
|
|
|
md: "calc(var(--radius) - 2px)",
|
|
|
|
|
sm: "calc(var(--radius) - 4px)",
|
|
|
|
|
},
|
2026-06-03 03:08:36 +07:00
|
|
|
animation: {
|
|
|
|
|
"bar-pulse": "bar-pulse 0.4s ease-in-out infinite",
|
2026-06-12 23:00:52 +07:00
|
|
|
"fade-in-up": "fadeInUp 0.5s ease-out",
|
|
|
|
|
"fade-in": "fadeIn 0.3s ease-out",
|
|
|
|
|
"glow-pulse": "glowPulse 3s ease-in-out infinite",
|
2026-06-03 03:08:36 +07:00
|
|
|
},
|
|
|
|
|
keyframes: {
|
|
|
|
|
"bar-pulse": {
|
|
|
|
|
"0%, 100%": { transform: "scaleY(0.8)" },
|
|
|
|
|
"50%": { transform: "scaleY(1.2)" },
|
|
|
|
|
},
|
2026-06-12 23:00:52 +07:00
|
|
|
fadeInUp: {
|
|
|
|
|
"0%": { opacity: "0", transform: "translateY(20px)" },
|
|
|
|
|
"100%": { opacity: "1", transform: "translateY(0)" },
|
|
|
|
|
},
|
|
|
|
|
fadeIn: {
|
|
|
|
|
"0%": { opacity: "0" },
|
|
|
|
|
"100%": { opacity: "1" },
|
|
|
|
|
},
|
|
|
|
|
glowPulse: {
|
|
|
|
|
"0%, 100%": { opacity: "0.4" },
|
|
|
|
|
"50%": { opacity: "0.8" },
|
|
|
|
|
},
|
2026-06-03 03:08:36 +07:00
|
|
|
},
|
2026-05-16 19:17:34 +07:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
};
|