-
{
diff --git a/web/tailwind.config.js b/web/tailwind.config.js
index ad62e74fa6..8e87ada90c 100644
--- a/web/tailwind.config.js
+++ b/web/tailwind.config.js
@@ -88,6 +88,10 @@ module.exports = {
fontSize: {
'2xs': '0.625rem',
},
+ backgroundImage: {
+ 'chatbot-bg': 'var(--color-chatbot-bg)',
+ 'chat-bubble-bg': 'var(--color-chat-bubble-bg)',
+ },
},
},
plugins: [
diff --git a/web/themes/dark.css b/web/themes/dark.css
index 75534b14ed..5093f5cc16 100644
--- a/web/themes/dark.css
+++ b/web/themes/dark.css
@@ -559,4 +559,7 @@ html[data-theme="dark"] {
--color-third-party-LangChain: #FFFFFF;
--color-third-party-Langfuse: #FFFFFF;
+
+ --color-chatbot-bg: linear-gradient(180deg, rgba(34, 34, 37, 0.90) 0%, rgba(29, 29, 32, 0.90) 90.48%);
+ --color-chat-bubble-bg: linear-gradient(180deg, rgba(200, 206, 218, 0.08) 0%, rgba(200, 206, 218, 0.02) 100%);
}
\ No newline at end of file
diff --git a/web/themes/light.css b/web/themes/light.css
index 5dd39abf88..d7df5204e6 100644
--- a/web/themes/light.css
+++ b/web/themes/light.css
@@ -559,4 +559,7 @@ html[data-theme="light"] {
--color-third-party-LangChain: #1C3C3C;
--color-third-party-Langfuse: #000000;
+
+ --color-chatbot-bg: linear-gradient(180deg, rgba(249, 250, 251, 0.90) 0%, rgba(242, 244, 247, 0.90) 90.48%);
+ --color-chat-bubble-bg: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.60) 100%);
}
\ No newline at end of file