Initial commit

This commit is contained in:
Haitham Khalifa
2026-02-16 12:02:45 +01:00
commit 11252e6520
37 changed files with 8118 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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;