orchestry-mcp
Version:
Orchestry MCP Server for multi-session task management
42 lines • 992 B
JavaScript
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
bmad: {
business: '#8B5CF6', // Purple
mission: '#3B82F6', // Blue
approach: '#10B981', // Green
deployment: '#F59E0B', // Amber
},
status: {
backlog: '#94A3B8',
todo: '#60A5FA',
'in-progress': '#FBBF24',
review: '#A78BFA',
done: '#34D399',
blocked: '#F87171',
}
},
animation: {
'slide-in': 'slideIn 0.3s ease-out',
'fade-in': 'fadeIn 0.3s ease-out',
},
keyframes: {
slideIn: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
},
},
plugins: [],
}