feat: Tailwind config with extended theme colors
Browse files- frontend/tailwind.config.js +12 -1
frontend/tailwind.config.js
CHANGED
|
@@ -1,6 +1,17 @@
|
|
| 1 |
/** @type {import('tailwindcss').Config} */
|
| 2 |
export default {
|
| 3 |
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
| 4 |
-
theme: {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
plugins: [],
|
| 6 |
}
|
|
|
|
| 1 |
/** @type {import('tailwindcss').Config} */
|
| 2 |
export default {
|
| 3 |
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
| 4 |
+
theme: {
|
| 5 |
+
extend: {
|
| 6 |
+
fontFamily: {
|
| 7 |
+
sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Inter', 'Roboto', 'sans-serif'],
|
| 8 |
+
mono: ['JetBrains Mono', 'Fira Code', 'Menlo', 'Monaco', 'monospace'],
|
| 9 |
+
},
|
| 10 |
+
animation: {
|
| 11 |
+
'fade-in': 'fadeIn 0.3s ease-out',
|
| 12 |
+
'shimmer': 'shimmer 2s infinite',
|
| 13 |
+
},
|
| 14 |
+
},
|
| 15 |
+
},
|
| 16 |
plugins: [],
|
| 17 |
}
|