claude-collab
Version:
Claude Collab - The AI collaboration framework that prevents echo chambers
27 lines • 562 B
JavaScript
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#2563eb',
secondary: '#7c3aed',
success: '#10b981',
warning: '#f59e0b',
error: '#ef4444',
diversity: {
high: '#10b981',
medium: '#f59e0b',
low: '#ef4444'
}
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}