+ );
+}
diff --git a/client/src/components/alert-dialog.tsx b/client/src/components/alert-dialog.tsx
index bf2fdde..3c3018c 100644
--- a/client/src/components/alert-dialog.tsx
+++ b/client/src/components/alert-dialog.tsx
@@ -25,7 +25,7 @@ import { cn } from "@/lib/utils";
*
* @param title Optional title displayed at the top of the dialog
* @param successText Text displayed when the operation is complete
- * @param color Optional color for the success icon and button (default: `#006DD5`)
+ * @param color Optional color for the success icon and button (default: `var(--bloom-blue)`)
* @param showIcon Whether to show the icon above the content (default: `true`)
* @param children React node used as the DialogTrigger
*
@@ -33,7 +33,7 @@ import { cn } from "@/lib/utils";
*
*
*
@@ -42,7 +42,7 @@ function AlertDialog({
title,
successText,
children,
- color = "#006DD5",
+ color = "var(--bloom-blue)",
showIcon = true,
}: {
title?: string;
@@ -80,7 +80,7 @@ function AlertDialog({