From 846e87ed39c4417eb6780a45cd33d314882bb9b0 Mon Sep 17 00:00:00 2001 From: Salih Altun Date: Mon, 3 Jun 2024 12:32:51 +0300 Subject: [PATCH] Update badge variants using success and warning colors (#404) --- skyvern-frontend/src/components/ui/badge-variants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skyvern-frontend/src/components/ui/badge-variants.ts b/skyvern-frontend/src/components/ui/badge-variants.ts index 2c34ad44..0b3dc0ff 100644 --- a/skyvern-frontend/src/components/ui/badge-variants.ts +++ b/skyvern-frontend/src/components/ui/badge-variants.ts @@ -10,9 +10,9 @@ const badgeVariants = cva( secondary: "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80", success: - "border-transparent bg-green-700 text-secondary-foreground shadow hover:bg-green-700/80", + "border-transparent bg-success text-success-foreground shadow hover:bg-success/80", warning: - "border-transparent bg-yellow-500 text-primary-foreground shadow hover:bg-yellow-500/80", + "border-transparent bg-warning text-warning-foreground shadow hover:bg-warning/80", destructive: "border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80", outline: "text-foreground",