Spaces:
Build error
Build error
Create tailwind.js
Browse files- frontend/tailwind.js +42 -0
frontend/tailwind.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
content: [
|
| 4 |
+
"./src/**/*.{js,jsx,ts,tsx}",
|
| 5 |
+
"./public/index.html"
|
| 6 |
+
],
|
| 7 |
+
theme: {
|
| 8 |
+
extend: {
|
| 9 |
+
colors: {
|
| 10 |
+
primary: {
|
| 11 |
+
DEFAULT: '#4F46E5',
|
| 12 |
+
50: '#EBEAFC',
|
| 13 |
+
100: '#D7D5FA',
|
| 14 |
+
200: '#AFAAF5',
|
| 15 |
+
300: '#867FF1',
|
| 16 |
+
400: '#5E54EC',
|
| 17 |
+
500: '#4F46E5',
|
| 18 |
+
600: '#2D23D3',
|
| 19 |
+
700: '#221BA0',
|
| 20 |
+
800: '#17136D',
|
| 21 |
+
900: '#0C0B3A'
|
| 22 |
+
},
|
| 23 |
+
secondary: {
|
| 24 |
+
DEFAULT: '#6B7280',
|
| 25 |
+
50: '#F9FAFB',
|
| 26 |
+
100: '#F3F4F6',
|
| 27 |
+
200: '#E5E7EB',
|
| 28 |
+
300: '#D1D5DB',
|
| 29 |
+
400: '#9CA3AF',
|
| 30 |
+
500: '#6B7280',
|
| 31 |
+
600: '#4B5563',
|
| 32 |
+
700: '#374151',
|
| 33 |
+
800: '#1F2937',
|
| 34 |
+
900: '#111827'
|
| 35 |
+
}
|
| 36 |
+
}
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
plugins: [
|
| 40 |
+
require('@tailwindcss/typography')
|
| 41 |
+
]
|
| 42 |
+
}
|