Spaces:
Build error
Build error
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| './pages/**/*.{js,ts,jsx,tsx}', | |
| './components/**/*.{js,ts,jsx,tsx}', | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'node-ceo': '#fbbf24', | |
| 'node-claude': '#8b5cf6', | |
| 'node-gemini': '#3b82f6', | |
| 'node-gpt': '#10b981', | |
| 'node-llama': '#f97316', | |
| 'node-custom': '#6b7280', | |
| }, | |
| animation: { | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |