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

    Interface LocalVideoTileColors

    Customizable colors for LocalVideoTile component. All colors accept any valid CSS color value.

    const darkThemeColors: Partial<LocalVideoTileColors> = {
    background: '#1a1a1a',
    overlayBackground: 'rgba(0,0,0,0.7)',
    recordingIndicator: '#ff0000'
    };

    <LocalVideoTile colors={darkThemeColors} />
    interface LocalVideoTileColors {
        background: string;
        engagementHigh: string;
        engagementLow: string;
        engagementMedium: string;
        engagementVeryLow: string;
        handRaisedIndicator: string;
        indicatorIcon: string;
        moodColors: Record<MoodType, string>;
        moodIndicatorBackground: string;
        moodIndicatorText: string;
        mutedIndicator: string;
        overlayBackground: string;
        overlayBackgroundHover: string;
        overlayText: string;
        recordingIndicator: string;
        streamingIndicator: string;
    }
    Index

    Properties

    background: string

    Background color of the tile

    engagementHigh: string

    Color for high engagement level (>= 0.6)

    engagementLow: string

    Color for low engagement level (>= 0.3)

    engagementMedium: string

    Color for medium engagement level (>= 0.4)

    engagementVeryLow: string

    Color for very low engagement level (< 0.3)

    handRaisedIndicator: string

    Background color of hand raised indicator badge

    indicatorIcon: string

    Icon color within indicator badges

    moodColors: Record<MoodType, string>

    Colors for each mood type (used for icon tinting or badge accent)

    moodIndicatorBackground: string

    Background color for mood indicator badge

    moodIndicatorText: string

    Text color for mood indicator label

    mutedIndicator: string

    Background color of muted indicator badges

    overlayBackground: string

    Background color for overlay elements (buttons, labels)

    overlayBackgroundHover: string

    Hover background color for overlay elements

    overlayText: string

    Text/icon color for overlay elements

    recordingIndicator: string

    Color of the recording indicator dot/badge

    streamingIndicator: string

    Color of the streaming/live indicator dot/badge