ConstColors are standalone values (not tied to MUI theme) for consistent styling. The dark theme matches VideoGrid and VideoTile for a unified look.
import { defaultParticipantListColors } from '@hiyve/react-ui';
// Create a light theme variant
const lightColors = {
...defaultParticipantListColors,
headerBackground: '#f5f5f5',
containerBackground: '#ffffff',
primaryText: 'rgba(0, 0, 0, 0.87)',
secondaryText: 'rgba(0, 0, 0, 0.6)',
divider: 'rgba(0, 0, 0, 0.12)',
};
Default dark theme colors for the ParticipantList component.