From 05ececd632c7f0eb5a036d9a8593f725f524827f Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Fri, 21 Feb 2025 14:28:40 +0700 Subject: [PATCH] refactor: edit color badge --- src/pages/12_debit-note/constants.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/12_debit-note/constants.ts b/src/pages/12_debit-note/constants.ts index 2434ea69..e9e400f8 100644 --- a/src/pages/12_debit-note/constants.ts +++ b/src/pages/12_debit-note/constants.ts @@ -80,6 +80,9 @@ export const columns = [ ] as const satisfies QTableProps['columns']; export const hslaColors: Record = { - Pending: '--blue-6-hsl', - Success: '--red-6-hsl', + Issued: '--orange-6-hsl', + PaymentPending: '--orange-10-hsl', + PaymentSuccess: '--green-8-hsl', + ProcessComplete: '--blue-6-hsl', + Canceled: '--red-6-hsl', };