Skip to content

Multi-chat Widget

With Synchra’s Multi-chat Widget you can very easily display your combined chat in OBS or anything else that supports a browser source. It supports Twitch, YouTube, TikTok and Kick. You can customize it to your liking with simple settings and custom CSS in the Dashboard.

The Chat Widget can be styled using custom CSS. You can target specific elements using the classes below and customize appearance.

ClassDescription
.chat-message-containerIndividual message container
.chat-messages-containerMain container for all chat messages
.chat-containerOuter wrapper for chat messages
.chat-message-textThe actual message text content
.chat-message-usernameUsername display
.chat-message-mention@mentions within messages
.chat-message-linkLinks within messages
.chat-message-timestampMessage timestamp
.chat-message-provider-logoPlatform logo (Twitch, YouTube, etc.)
.chat-message-meta-containerPlatform, Badges, Timestamp, username conatiner
VariableDescriptionExample
--border-radiusCorner roundness8px
--border-colorBorder color#333
--border-widthBorder thickness2px
--background-opacityBackground transparency0.8
--background-colorBackground color#1a1a1a
--text-shadow-colorText shadow colorrgba(0,0,0,0.5)
--chat-widget-size-scaleSize scaling factor1
.chat-message-container {
padding: 1rem 1.25rem;
border-radius: 12px;
background: linear-gradient(145deg, #1a0736, #31176a);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(190, 150, 255, 0.25),
inset 0 0 4px rgba(255, 255, 255, 0.1);
}