Spaces:
Build error
Build error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +20 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
primary: '#2d4a3e',
|
| 11 |
+
secondary: '#f5f5f5',
|
| 12 |
+
accent: '#d4a574',
|
| 13 |
+
},
|
| 14 |
+
fontFamily: {
|
| 15 |
+
sans: ['Inter', 'sans-serif'],
|
| 16 |
+
},
|
| 17 |
+
},
|
| 18 |
+
},
|
| 19 |
+
plugins: [],
|
| 20 |
+
}
|