From 9514f5cb8eadd293d4c85a3849073b59ea93161a Mon Sep 17 00:00:00 2001 From: Luca <102960244+Luca-Timo@users.noreply.github.com> Date: Fri, 12 Jun 2026 16:41:59 +0200 Subject: [PATCH] fix(accounting): distinguish Categorized (purple) from Paid (green) Both badges were green; recolor the 'categorized' status to purple so the status (categorized) and payment state (paid) read distinctly. --- frontend/src/pages/admin/accounting/AccountingInboxPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/admin/accounting/AccountingInboxPage.tsx b/frontend/src/pages/admin/accounting/AccountingInboxPage.tsx index 69b54223..b60e1c84 100644 --- a/frontend/src/pages/admin/accounting/AccountingInboxPage.tsx +++ b/frontend/src/pages/admin/accounting/AccountingInboxPage.tsx @@ -29,7 +29,7 @@ const BOOKING_DISPOSITIONS: Disposition[] = ['rebill', 'durchlaufend']; const statusClasses: Record = { unsorted: 'bg-amber-100 text-amber-800 dark:bg-amber-900/40 dark:text-amber-300', - categorized: 'bg-green-100 text-green-800 dark:bg-green-900/40 dark:text-green-300', + categorized: 'bg-purple-100 text-purple-800 dark:bg-purple-900/40 dark:text-purple-300', declined: 'bg-neutral-200 text-neutral-700 dark:bg-neutral-700 dark:text-neutral-300', duplicate: 'bg-neutral-200 text-neutral-700 dark:bg-neutral-700 dark:text-neutral-300', };