From 1d288a0010ac180198abe3fe86b5c1ae4dc35acc Mon Sep 17 00:00:00 2001 From: Madalina Raicu Date: Thu, 9 Feb 2023 12:48:54 +0000 Subject: [PATCH] fix: update bg-colors notification --- libs/ui-toolkit/src/components/notification/notification.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ui-toolkit/src/components/notification/notification.tsx b/libs/ui-toolkit/src/components/notification/notification.tsx index a8720aa8c..c6b6e2911 100644 --- a/libs/ui-toolkit/src/components/notification/notification.tsx +++ b/libs/ui-toolkit/src/components/notification/notification.tsx @@ -56,9 +56,9 @@ export const Notification = ({ 'bg-vega-light-100 dark:bg-vega-dark-100 ': intent === Intent.None, 'bg-vega-blue-300 dark:bg-vega-blue-700': intent === Intent.Primary, 'bg-vega-green-300 dark:bg-vega-green-700': intent === Intent.Success, - 'bg-vega-orange-300 dark:bg-vega-orange-700': + 'bg-vega-orange-300 dark:bg-vega-orange-650': intent === Intent.Warning, - 'bg-vega-pink-300 dark:bg-vega-pink-700': intent === Intent.Danger, + 'bg-vega-pink-300 dark:bg-vega-pink-650': intent === Intent.Danger, }, 'border rounded p-2 flex items-start gap-2.5 bg-neutral-100 dark:bg-neutral-900 my-4', className