Color configuration for VideoGrid container and highlights.
These colors control the grid container appearance and dominant speaker highlighting. For individual tile colors, use the tileColors and localTileColors props.
tileColors
localTileColors
import { defaultVideoGridColors } from '@hiyve/react-ui';// Create a custom color schemeconst customColors: Partial<VideoGridColors> = { background: '#000000', dominantBorder: '#00ff00',};<VideoGrid colors={customColors} /> Copy
import { defaultVideoGridColors } from '@hiyve/react-ui';// Create a custom color schemeconst customColors: Partial<VideoGridColors> = { background: '#000000', dominantBorder: '#00ff00',};<VideoGrid colors={customColors} />
Background color for the grid container.
'#212121' (Material Design grey.900) Copy
'#212121' (Material Design grey.900)
Border color for the dominant speaker highlight. Applied when a participant is the active speaker in speaker/sidebar layouts.
'#1976d2' (Material Design primary.main) Copy
'#1976d2' (Material Design primary.main)
Color configuration for VideoGrid container and highlights.
Remarks
These colors control the grid container appearance and dominant speaker highlighting. For individual tile colors, use the
tileColorsandlocalTileColorsprops.Example