Customize the Aparsoft chatbot widget to match your brand.
The easiest way to change colors is via component props:
<AparsoftChatbot
apiKey="cb_your_api_key"
primaryColor="#e11d48"
secondaryColor="#7c3aed"
widgetTitle="My Brand Assistant"
welcomeMessage="Welcome! Ask me anything about our products."
/>For persistent theme changes that apply across all installations:
- Go to chatbot.aparsoft.com and open your chatbot settings
- Navigate to the Appearance tab
- Configure:
- Primary Color -- Header background, send button, launcher icon
- Secondary Color -- User message bubbles, links, accents
- Widget Title -- Header text
- Widget Subtitle -- Text below the title (e.g. "Typically replies instantly")
- Welcome Message -- First bot message
- Quick Replies -- Suggested questions shown below the welcome message
- Launcher Icon -- Custom SVG or emoji for the floating button
Colors accept any valid CSS color value:
primaryColor="#1d4ed8" // Hex
primaryColor="rgb(29, 78, 216)" // RGB
primaryColor="blue" // Named colorHex values are recommended for consistency.
Control where the chat launcher appears:
<AparsoftChatbot apiKey="cb_your_api_key" position="bottom-left" />Options:
bottom-right(default) -- Launcher in the bottom-right cornerbottom-left-- Launcher in the bottom-left corner
The free tier displays "Powered by Aparsoft AI" in the widget footer. To hide it:
<AparsoftChatbot apiKey="cb_your_api_key" showBranding={false} />Hiding branding is available on paid plans. The dashboard will prompt you to upgrade if you attempt this on the free tier.
Automatically open the chat widget after a delay:
<AparsoftChatbot apiKey="cb_your_api_key" autoOpenDelay={5000} />This opens the chat panel 5 seconds after the page loads. Set to 0 (default) to keep the launcher closed until the user clicks it.
The widget runs inside a sandboxed iframe on aparsoft.com, so you cannot directly override its CSS from your page. If you need deep customization beyond what the props and dashboard offer, contact hello@aparsoft.com for a white-label solution.
<AparsoftChatbot
apiKey="cb_your_api_key"
primaryColor="#18181b"
secondaryColor="#3b82f6"
widgetTitle="Night Mode Assistant"
/><AparsoftChatbot
apiKey="cb_your_api_key"
primaryColor="#ffffff"
secondaryColor="#111827"
widgetTitle="Help"
welcomeMessage="What do you need help with?"
/><AparsoftChatbot
apiKey="cb_your_api_key"
primaryColor="#your-brand-color"
secondaryColor="#your-accent-color"
widgetTitle="Your Brand Name"
/>