anycoder-ea74d65e / tailwind.config.js
Kidizzz's picture
Upload tailwind.config.js with huggingface_hub
05c6a24 verified
Raw
History Blame Contribute Delete
533 Bytes
/** @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: [],
}