Skip to content

Commit

Permalink
Theme
Browse files Browse the repository at this point in the history
  • Loading branch information
birksy89 committed Oct 30, 2024
1 parent 8d46712 commit e8ef66d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/ui/src/views/chatbot/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,13 @@ const ChatbotFull = () => {
{!chatflow || chatflow.apikeyid ? (
<p>Invalid Chatbot</p>
) : (
<FullPageChat chatflowid={chatflow.id} apiHost={baseURL} chatflowConfig={chatbotOverrideConfig} />
<FullPageChat
chatflowid={chatflow.id}
apiHost={baseURL}
chatflowConfig={chatbotOverrideConfig}
// Nothing was passed in for the "button", which is used for the header color. This makes it the Hostcomm blue color.
theme={{ chatWindow: chatbotTheme, button: { backgroundColor: '#0099CD' } }}
/>
)}
<LoginDialog show={loginDialogOpen} dialogProps={loginDialogProps} onConfirm={onLoginClick} />
</>
Expand Down

0 comments on commit e8ef66d

Please sign in to comment.