Spaces:
Build error
Build error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +40 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
content: [
|
| 4 |
+
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
| 5 |
+
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
| 6 |
+
],
|
| 7 |
+
theme: {
|
| 8 |
+
extend: {
|
| 9 |
+
colors: {
|
| 10 |
+
primary: {
|
| 11 |
+
50: '#f0f9ff',
|
| 12 |
+
100: '#e0f2fe',
|
| 13 |
+
200: '#bae6fd',
|
| 14 |
+
300: '#7dd3fc',
|
| 15 |
+
400: '#38bdf8',
|
| 16 |
+
500: '#0ea5e9',
|
| 17 |
+
600: '#0284c7',
|
| 18 |
+
700: '#0369a1',
|
| 19 |
+
800: '#075985',
|
| 20 |
+
900: '#0c4a6e',
|
| 21 |
+
},
|
| 22 |
+
},
|
| 23 |
+
animation: {
|
| 24 |
+
'fade-in': 'fadeIn 0.3s ease-in-out',
|
| 25 |
+
'slide-up': 'slideUp 0.3s ease-out',
|
| 26 |
+
},
|
| 27 |
+
keyframes: {
|
| 28 |
+
fadeIn: {
|
| 29 |
+
'0%': { opacity: '0' },
|
| 30 |
+
'100%': { opacity: '1' },
|
| 31 |
+
},
|
| 32 |
+
slideUp: {
|
| 33 |
+
'0%': { transform: 'translateY(10px)', opacity: '0' },
|
| 34 |
+
'100%': { transform: 'translateY(0)', opacity: '1' },
|
| 35 |
+
},
|
| 36 |
+
},
|
| 37 |
+
},
|
| 38 |
+
},
|
| 39 |
+
plugins: [],
|
| 40 |
+
}
|