Spaces:
Build error
Build error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +52 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
darkMode: 'class',
|
| 4 |
+
content: [
|
| 5 |
+
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
| 6 |
+
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
| 7 |
+
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
| 8 |
+
],
|
| 9 |
+
theme: {
|
| 10 |
+
extend: {
|
| 11 |
+
colors: {
|
| 12 |
+
industrial: {
|
| 13 |
+
900: '#0a0a0f',
|
| 14 |
+
800: '#12121a',
|
| 15 |
+
700: '#1a1a25',
|
| 16 |
+
600: '#252535',
|
| 17 |
+
500: '#353545',
|
| 18 |
+
400: '#454555',
|
| 19 |
+
300: '#656575',
|
| 20 |
+
200: '#9595a5',
|
| 21 |
+
100: '#c5c5d5',
|
| 22 |
+
},
|
| 23 |
+
status: {
|
| 24 |
+
installed: '#22c55e',
|
| 25 |
+
ready: '#eab308',
|
| 26 |
+
constrained: '#ef4444',
|
| 27 |
+
pending: '#6b7280',
|
| 28 |
+
},
|
| 29 |
+
accent: {
|
| 30 |
+
cyan: '#06b6d4',
|
| 31 |
+
orange: '#f97316',
|
| 32 |
+
purple: '#8b5cf6',
|
| 33 |
+
},
|
| 34 |
+
},
|
| 35 |
+
fontFamily: {
|
| 36 |
+
mono: ['JetBrains Mono', 'Consolas', 'monospace'],
|
| 37 |
+
sans: ['Inter', 'system-ui', 'sans-serif'],
|
| 38 |
+
},
|
| 39 |
+
animation: {
|
| 40 |
+
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
| 41 |
+
'glow': 'glow 2s ease-in-out infinite alternate',
|
| 42 |
+
},
|
| 43 |
+
keyframes: {
|
| 44 |
+
glow: {
|
| 45 |
+
'0%': { boxShadow: '0 0 5px #06b6d4, 0 0 10px #06b6d4' },
|
| 46 |
+
'100%': { boxShadow: '0 0 20px #06b6d4, 0 0 30px #06b6d4' },
|
| 47 |
+
},
|
| 48 |
+
},
|
| 49 |
+
},
|
| 50 |
+
},
|
| 51 |
+
plugins: [],
|
| 52 |
+
};
|