Spaces:
Build error
Build error
Mehdi commited on
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +30 -39
tailwind.config.js
CHANGED
|
@@ -6,54 +6,45 @@ module.exports = {
|
|
| 6 |
],
|
| 7 |
theme: {
|
| 8 |
extend: {
|
| 9 |
-
fontFamily: {
|
| 10 |
-
sans: ['Vazirmatn', 'sans-serif'],
|
| 11 |
-
},
|
| 12 |
colors: {
|
| 13 |
primary: {
|
| 14 |
-
50: '#
|
| 15 |
-
100: '#
|
| 16 |
-
200: '#
|
| 17 |
-
300: '#
|
| 18 |
-
400: '#
|
| 19 |
-
500: '#
|
| 20 |
-
600: '#
|
| 21 |
-
700: '#
|
| 22 |
-
800: '#
|
| 23 |
-
900: '#
|
| 24 |
},
|
| 25 |
secondary: {
|
| 26 |
-
50: '#
|
| 27 |
-
100: '#
|
| 28 |
-
200: '#
|
| 29 |
-
300: '#
|
| 30 |
-
400: '#
|
| 31 |
-
500: '#
|
| 32 |
-
600: '#
|
| 33 |
-
700: '#
|
| 34 |
-
800: '#
|
| 35 |
-
900: '#
|
| 36 |
-
}
|
| 37 |
},
|
| 38 |
animation: {
|
| 39 |
-
'
|
| 40 |
-
'
|
| 41 |
-
'pulse-slow': 'pulse
|
| 42 |
},
|
| 43 |
keyframes: {
|
| 44 |
-
|
| 45 |
-
'0%
|
| 46 |
-
|
| 47 |
-
'background-position': 'left center'
|
| 48 |
-
},
|
| 49 |
-
'50%': {
|
| 50 |
-
'background-size': '200% 200%',
|
| 51 |
-
'background-position': 'right center'
|
| 52 |
-
}
|
| 53 |
},
|
| 54 |
-
|
| 55 |
-
'0%
|
| 56 |
-
'
|
| 57 |
}
|
| 58 |
}
|
| 59 |
},
|
|
|
|
| 6 |
],
|
| 7 |
theme: {
|
| 8 |
extend: {
|
|
|
|
|
|
|
|
|
|
| 9 |
colors: {
|
| 10 |
primary: {
|
| 11 |
+
50: '#eff6ff',
|
| 12 |
+
100: '#dbeafe',
|
| 13 |
+
200: '#bfdbfe',
|
| 14 |
+
300: '#93c5fd',
|
| 15 |
+
400: '#60a5fa',
|
| 16 |
+
500: '#3b82f6',
|
| 17 |
+
600: '#2563eb',
|
| 18 |
+
700: '#1d4ed8',
|
| 19 |
+
800: '#1e40af',
|
| 20 |
+
900: '#1e3a8a',
|
| 21 |
},
|
| 22 |
secondary: {
|
| 23 |
+
50: '#f8fafc',
|
| 24 |
+
100: '#f1f5f9',
|
| 25 |
+
200: '#e2e8f0',
|
| 26 |
+
300: '#cbd5e1',
|
| 27 |
+
400: '#94a3b8',
|
| 28 |
+
500: '#64748b',
|
| 29 |
+
600: '#475569',
|
| 30 |
+
700: '#334155',
|
| 31 |
+
800: '#1e293b',
|
| 32 |
+
900: '#0f172a',
|
| 33 |
+
}
|
| 34 |
},
|
| 35 |
animation: {
|
| 36 |
+
'fade-in': 'fadeIn 0.5s ease-in-out',
|
| 37 |
+
'slide-up': 'slideUp 0.3s ease-out',
|
| 38 |
+
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
| 39 |
},
|
| 40 |
keyframes: {
|
| 41 |
+
fadeIn: {
|
| 42 |
+
'0%': { opacity: '0' },
|
| 43 |
+
'100%': { opacity: '1' },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
},
|
| 45 |
+
slideUp: {
|
| 46 |
+
'0%': { transform: 'translateY(10px)', opacity: '0' },
|
| 47 |
+
'100%': { transform: 'translateY(0)', opacity: '1' },
|
| 48 |
}
|
| 49 |
}
|
| 50 |
},
|