/** CRM module visual tokens — extends global DS (globals.css). */ export const crmTokens = { accent: "var(--crm-accent)", accentSoft: "var(--crm-accent-soft)", slate: "var(--crm-slate)", success: "var(--crm-success)", warning: "var(--crm-warning)", danger: "var(--crm-danger)", } as const; export const leadStatusLabels: Record = { new: "جدید", contacted: "تماس گرفته", qualified: "واجد شرایط", unqualified: "نامناسب", converted: "تبدیل‌شده", lost: "از دست رفته", }; export const leadPriorityLabels: Record = { low: "کم", medium: "متوسط", high: "بالا", urgent: "فوری", }; export const opportunityStatusLabels: Record = { open: "باز", won: "برنده", lost: "باخته", on_hold: "معلق", }; export const activityStatusLabels: Record = { planned: "برنامه‌ریزی", in_progress: "در جریان", completed: "تکمیل", cancelled: "لغو", }; export const contactStatusLabels: Record = { active: "فعال", inactive: "غیرفعال", archived: "آرشیو", }; export const organizationStatusLabels: Record = { active: "فعال", inactive: "غیرفعال", prospect: "بالقوه", archived: "آرشیو", };