mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-27 07:04:55 +00:00
18 lines
525 B
TypeScript
18 lines
525 B
TypeScript
export const CONNECTION_STYLE = {
|
|
stroke: '#a78bfa',
|
|
strokeWidth: 2.5
|
|
}
|
|
|
|
export const STATUS_COLORS = {
|
|
idea: 'bg-muted text-muted-foreground',
|
|
planned: 'bg-accent text-accent-foreground',
|
|
'in-progress': 'bg-primary text-primary-foreground',
|
|
completed: 'bg-green-600 text-white',
|
|
}
|
|
|
|
export const PRIORITY_COLORS = {
|
|
low: 'border-blue-400/60 bg-blue-50/80 dark:bg-blue-950/40',
|
|
medium: 'border-amber-400/60 bg-amber-50/80 dark:bg-amber-950/40',
|
|
high: 'border-red-400/60 bg-red-50/80 dark:bg-red-950/40',
|
|
}
|