hey <@1112743033444773910> Is it possible to chan...
# 🌎general
g
hey @bright-magazine-792 Is it possible to change the color of the bot in this code (this is the code to make the bot full screen): // Import the Botpress WebChat JavaScript file // Initialize the Botpress WebChat with the required parameters window.botpressWebChat.init({ // Replace and with your actual bot and client IDs "botId": "", "clientId": "", // Set the URL for the Botpress WebChat JavaScript file and the messaging server "hostUrl": "https://cdn.botpress.cloud/webchat/v0", "messagingUrl": "https://messaging.botpress.cloud", // Set the name of the bot that will be displayed in the WebChat interface "botName": "Test", // Set the width of the WebChat container and layout to 100% (Full Screen) "containerWidth": "100%25", "layoutWidth": "100%25", // Hide the widget and disable animations "hideWidget": true, "disableAnimations": true, }); // Opens up the Chatbot by default // This lets users start chatting with the Chatbot without needing to click any buttons or menus. window.botpressWebChat.onEvent( function () { window.botpressWebChat.sendEvent({ type: "show" }); }, ["LIFECYCLE.LOADED"] );