diff --git a/frontend/src/components/ui/wysiwyg.tsx b/frontend/src/components/ui/wysiwyg.tsx
index e6697b3d..0d7466e5 100644
--- a/frontend/src/components/ui/wysiwyg.tsx
+++ b/frontend/src/components/ui/wysiwyg.tsx
@@ -259,12 +259,12 @@ function WYSIWYGEditor({
variant="icon"
size="icon"
onClick={handleCopy}
- className="pointer-events-auto p-2 bg-foreground h-8 w-8"
+ className="pointer-events-auto p-2 bg-muted h-8 w-8"
>
{copied ? (
-
+
) : (
-
+
)}
{/* Edit button - only if onEdit provided */}
@@ -276,9 +276,9 @@ function WYSIWYGEditor({
variant="icon"
size="icon"
onClick={onEdit}
- className="pointer-events-auto p-2 bg-foreground h-8 w-8"
+ className="pointer-events-auto p-2 bg-muted h-8 w-8"
>
-
+
)}
{/* Delete button - only if onDelete provided */}
@@ -290,9 +290,9 @@ function WYSIWYGEditor({
variant="icon"
size="icon"
onClick={onDelete}
- className="pointer-events-auto p-2 bg-foreground h-8 w-8"
+ className="pointer-events-auto p-2 bg-muted h-8 w-8"
>
-
+
)}