ConstColors are standalone values (not tied to MUI theme) for consistent styling. The dark theme matches VideoGrid and VideoTile for a unified look.
Color Groups:
import { defaultChatPanelColors } from '@hiyve/react-collaboration';
// Create a light theme variant
const lightColors = {
...defaultChatPanelColors,
headerBackground: '#f5f5f5',
containerBackground: '#ffffff',
localMessageBackground: '#1976d2',
localMessageText: '#ffffff',
remoteMessageBackground: '#e0e0e0',
remoteMessageText: 'rgba(0, 0, 0, 0.87)',
divider: 'rgba(0, 0, 0, 0.12)',
};
Default dark theme colors for the ChatPanel component.