You can customize components by enabling Dark Mode.
By default, all components are in Light Mode, but there are several properties and methods to enable Dark Mode.
let client = useVeltClient();
client.setDarkMode(true);
<VeltComments
darkMode={true}
dialogDarkMode={true}
pinDarkMode={true}
textCommentToolDarkMode={true}
textCommentToolbarDarkMode={true}
/>
<VeltPresence darkMode={true} />
<VeltCommentsSidebar darkMode={true} />
<VeltSidebarButton darkMode={true} />
<VeltCommentBubble darkMode={true} />
<VeltCommentTool darkMode={true}/>
<VeltHuddle darkMode={true} />
<VeltArrows darkMode={true} />
const commentElement = Velt.getCommentElement();
commentElement.enableDarkMode();
commentElement.disableDarkMode();