diff --git a/src/frontend/src/alerts/alertDropDown/components/singleAlertComponent/index.tsx b/src/frontend/src/alerts/alertDropDown/components/singleAlertComponent/index.tsx
index 78e28f6d6..fa8bbd6fb 100644
--- a/src/frontend/src/alerts/alertDropDown/components/singleAlertComponent/index.tsx
+++ b/src/frontend/src/alerts/alertDropDown/components/singleAlertComponent/index.tsx
@@ -62,34 +62,34 @@ export default function SingleAlert({
removeAlert(dropItem.id);
}, 500);
}}
- className="inline-flex rounded-md bg-red-50 p-1.5 text-status-red"
+ className="inline-flex rounded-md p-1.5 text-status-red"
>
Dismiss
-
+
) : type === "notice" ? (
-
+
{dropItem.title}
{dropItem.link ? (
Details
@@ -108,17 +108,17 @@ export default function SingleAlert({
removeAlert(dropItem.id);
}, 500);
}}
- className="inline-flex rounded-md bg-blue-50 p-1.5 text-medium-dark-blue "
+ className="inline-flex rounded-md p-1.5 text-info-foreground"
>
Dismiss
-
+
) : (
@@ -142,10 +142,10 @@ export default function SingleAlert({
removeAlert(dropItem.id);
}, 500);
}}
- className="inline-flex rounded-md bg-success-background p-1.5 text-status-green"
+ className="inline-flex rounded-md p-1.5 text-status-green"
>
Dismiss
-
+
diff --git a/src/frontend/src/components/ui/dialog.tsx b/src/frontend/src/components/ui/dialog.tsx
index 305155412..4df519490 100644
--- a/src/frontend/src/components/ui/dialog.tsx
+++ b/src/frontend/src/components/ui/dialog.tsx
@@ -27,7 +27,7 @@ const DialogOverlay = React.forwardRef<
-
+
diff --git a/src/frontend/tailwind.config.js b/src/frontend/tailwind.config.js
index e60b7e594..53fb08fd8 100644
--- a/src/frontend/tailwind.config.js
+++ b/src/frontend/tailwind.config.js
@@ -28,6 +28,7 @@ module.exports = {
'btn-shadow': "var(--round-btn-shadow)",
'build-trigger': "var(--build-trigger)",
'chat-trigger': "var(--chat-trigger)",
+ 'blur-shared': "var(--blur-shared)",
'dark-blue': "var(--dark-blue)",
'dark-gray': "var(--dark-gray)",
'dark-red': "var(--dark-red)",
@@ -36,6 +37,8 @@ module.exports = {
'high-dark-gray': "var(--high-dark-gray)",
'high-indigo': "var(--high-indigo)",
'high-light-gray': "var(--high-light-gray)",
+ 'info-background': "var(--info-background)",
+ 'info-foreground': "var(--info-foreground)",
'light-blue': "var(--light-blue)",
'light-gray': "var(--light-gray)",
'light-slate': "var(--light-slate)",