Hiyve Components - v1.0.0
    Preparing search index...

    Interface VideoGridColors

    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.

    import { defaultVideoGridColors } from '@hiyve/react-ui';

    // Create a custom color scheme
    const customColors: Partial<VideoGridColors> = {
    background: '#000000',
    dominantBorder: '#00ff00',
    };

    <VideoGrid colors={customColors} />
    interface VideoGridColors {
        background: string;
        dominantBorder: string;
    }
    Index

    Properties

    background: string

    Background color for the grid container.

    '#212121' (Material Design grey.900)
    
    dominantBorder: string

    Border color for the dominant speaker highlight. Applied when a participant is the active speaker in speaker/sidebar layouts.

    '#1976d2' (Material Design primary.main)