Spaces:
Build error
Build error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +33 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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: '#f0f4ff',
|
| 12 |
+
100: '#e0e9ff',
|
| 13 |
+
200: '#c7d7fe',
|
| 14 |
+
300: '#a5bbfc',
|
| 15 |
+
400: '#8196f8',
|
| 16 |
+
500: '#667eea',
|
| 17 |
+
600: '#5568d3',
|
| 18 |
+
700: '#4651b8',
|
| 19 |
+
800: '#3a4395',
|
| 20 |
+
900: '#333b77',
|
| 21 |
+
},
|
| 22 |
+
secondary: {
|
| 23 |
+
500: '#764ba2',
|
| 24 |
+
600: '#6a4391',
|
| 25 |
+
},
|
| 26 |
+
},
|
| 27 |
+
fontFamily: {
|
| 28 |
+
sans: ['Inter', 'system-ui', 'sans-serif'],
|
| 29 |
+
},
|
| 30 |
+
},
|
| 31 |
+
},
|
| 32 |
+
plugins: [],
|
| 33 |
+
};
|