Spaces:
Build error
Build error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +21 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
content: [
|
| 4 |
+
'./pages/**/*.{js,ts,jsx,tsx}',
|
| 5 |
+
'./components/**/*.{js,ts,jsx,tsx}',
|
| 6 |
+
],
|
| 7 |
+
theme: {
|
| 8 |
+
extend: {
|
| 9 |
+
colors: {
|
| 10 |
+
police: {
|
| 11 |
+
blue: '#0f172a',
|
| 12 |
+
light: '#1e293b',
|
| 13 |
+
accent: '#3b82f6',
|
| 14 |
+
text: '#f8fafc',
|
| 15 |
+
muted: '#94a3b8'
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
},
|
| 19 |
+
},
|
| 20 |
+
plugins: [],
|
| 21 |
+
}
|