import type { AgentRole } from "@paperclipai/shared"; export const agentRoleColors: Record = { pm: "text-blue-600 dark:text-blue-400", engineer: "text-violet-600 dark:text-violet-400", ceo: "text-amber-600 dark:text-amber-400", general: "text-slate-600 dark:text-slate-400", designer: "text-pink-600 dark:text-pink-400", qa: "text-orange-600 dark:text-orange-400", researcher: "text-teal-600 dark:text-teal-400", devops: "text-emerald-600 dark:text-emerald-400", cto: "text-indigo-600 dark:text-indigo-400", cmo: "text-rose-600 dark:text-rose-400", cfo: "text-cyan-600 dark:text-cyan-400", }; export const agentRoleColorDefault = "text-muted-foreground";