{document.favIconUrl ? (
diff --git a/src/components/Common/Playground/Message.tsx b/src/components/Common/Playground/Message.tsx
index 891ca7c76..0f714e3cc 100644
--- a/src/components/Common/Playground/Message.tsx
+++ b/src/components/Common/Playground/Message.tsx
@@ -351,7 +351,7 @@ export const PlaygroundMessage = (props: Props) => {
})
}
}}
- className="flex items-center justify-center w-6 h-6 rounded-full bg-surface-100 dark:bg-[#242424] border border-gray-300 dark:border-none hover:bg-surface-200 dark:hover:bg-surface-700 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500">
+ className="flex items-center justify-center w-6 h-6 rounded-full bg-surface-100 dark:bg-surface-900 border border-gray-300 dark:border-none hover:bg-surface-200 dark:hover:bg-surface-700 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500">
{!isSpeaking ? (
) : (
@@ -376,7 +376,7 @@ export const PlaygroundMessage = (props: Props) => {
setIsBtnPressed(false)
}, 2000)
}}
- className="flex items-center justify-center w-6 h-6 rounded-full bg-surface-100 dark:bg-[#242424] border border-gray-300 dark:border-none hover:bg-surface-200 dark:hover:bg-surface-700 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500">
+ className="flex items-center justify-center w-6 h-6 rounded-full bg-surface-100 dark:bg-surface-900 border border-gray-300 dark:border-none hover:bg-surface-200 dark:hover:bg-surface-700 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500">
{!isBtnPressed ? (
) : (
@@ -395,7 +395,7 @@ export const PlaygroundMessage = (props: Props) => {
title={t("generationInfo")}>
@@ -406,7 +406,7 @@ export const PlaygroundMessage = (props: Props) => {
@@ -417,7 +417,7 @@ export const PlaygroundMessage = (props: Props) => {
@@ -428,7 +428,7 @@ export const PlaygroundMessage = (props: Props) => {
@@ -440,7 +440,7 @@ export const PlaygroundMessage = (props: Props) => {
@@ -449,7 +449,7 @@ export const PlaygroundMessage = (props: Props) => {
) : (
// add invisible div to prevent layout shift
)}
diff --git a/src/components/Common/Playground/PlaygroundUserMessage.tsx b/src/components/Common/Playground/PlaygroundUserMessage.tsx
index 4192217b7..143760154 100644
--- a/src/components/Common/Playground/PlaygroundUserMessage.tsx
+++ b/src/components/Common/Playground/PlaygroundUserMessage.tsx
@@ -96,7 +96,7 @@ export const PlaygroundUserMessageBubble: React.FC