33 lines
795 B
TypeScript
33 lines
795 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./lib/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
"purple-light": "#667eea",
|
|
"purple-dark": "#764ba2",
|
|
pink: "#ff69b4",
|
|
coral: "#ff6b6b",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "system-ui", "sans-serif"],
|
|
},
|
|
backgroundImage: {
|
|
"brand-gradient": "linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
|
|
"brand-gradient-dark": "linear-gradient(135deg, #5b6fe0 0%, #5e3f94 100%)",
|
|
},
|
|
boxShadow: {
|
|
"purple-soft": "0 20px 40px -20px rgba(118, 75, 162, 0.45)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|