-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
104 lines (104 loc) · 2.84 KB
/
tailwind.config.mjs
File metadata and controls
104 lines (104 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
// SafeMap Brand Colors basado en especificaciones
primary: {
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#3b82f6",
600: "#2563eb", // Color principal de SafeMap
700: "#1d4ed8",
800: "#1e40af",
900: "#1e3a8a",
},
secondary: {
50: "#f0fdf4",
100: "#dcfce7",
200: "#bbf7d0",
300: "#86efac",
400: "#4ade80",
500: "#22c55e",
600: "#16a34a",
700: "#15803d",
800: "#166534",
900: "#14532d",
},
danger: {
50: "#fef2f2",
100: "#fee2e2",
200: "#fecaca",
300: "#fca5a5",
400: "#f87171",
500: "#ef4444",
600: "#dc2626", // Color de alerta de SafeMap
700: "#b91c1c",
800: "#991b1b",
900: "#7f1d1d",
},
success: {
50: "#f0fdf4",
100: "#dcfce7",
200: "#bbf7d0",
300: "#86efac",
400: "#4ade80",
500: "#22c55e",
600: "#059669", // Color de éxito de SafeMap
700: "#047857",
800: "#065f46",
900: "#064e3b",
},
// Festival gradient colors (from MiduFest analysis)
festival: {
primary: "#667eea",
secondary: "#764ba2",
accent: "#f093fb",
},
},
fontFamily: {
sans: ["Inter Variable", "Inter", "system-ui", "sans-serif"],
display: ["Outfit Variable", "Outfit", "system-ui", "sans-serif"],
},
animation: {
"fade-in": "fadeIn 0.5s ease-in-out",
"slide-up": "slideUp 0.5s ease-out",
"bounce-slow": "bounce 2s infinite",
float: "float 3s ease-in-out infinite",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
slideUp: {
"0%": { transform: "translateY(100px)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
float: {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-10px)" },
},
},
// Bento Grid specific classes
gridTemplateAreas: {
"bento-desktop": `
"hero hero stats demo"
"features features stats demo"
"cta1 cta2 testimonial demo"
`,
"bento-tablet": `
"hero hero"
"demo stats"
"features features"
"cta1 cta2"
`,
},
},
},
plugins: [require("@midudev/tailwind-animations")],
};