GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

Videos - Web

Videos Player Style

VideoPlayerStyle {
  backgroundColor: string;
  headingText: BlazeVideosPlayerHeadingTextStyle;
  buttons: BlazeVideosPlayerButtonsStyle;
  icons: BlazeVideoIconsStyle;
  cta: BlazeVideosPlayerCtaStyle;
  seekBar: BlazeVideosPlayerSeekBarStyle;
  captions: BlazeVideosPlayerCaptionsStyle;
}

backgroundColor - string

Default color is #000000, type of string.

headingText - BlazeVideosPlayerHeadingTextStyle

BlazeVideosPlayerHeadingTextStyle, which includes different text styles for mobile, tablet, and desktop. Here’s how you can format it in a table:

BlazeVideosPlayerHeadingTextStyle = {
  textStyle: BlazeTextStyle;
  contentSource: 'TITLE';
  isVisible: boolean;
  font: string;
  textColor: string;
};

 BlazeTextStyle = {
  mobile: BlazeTextDeviceStyle;
  tablet: BlazeTextDeviceStyle;
  desktop: BlazeTextDeviceStyle;
};

BlazeTextDeviceStyle = {
  fontSize: string;
  fontWeight: FontWeightType;
  lineHeight?: string;
  letterSpacing?: string;
  textTransform?: TextTransformType;
};

FontWeightType = 'normal' | 'bold' | 'bolder' | 'lighter' | 'inherit' | 'initial' | 'unset' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';

TextTransformType = 'capitalize' | 'uppercase' | 'lowercase' | 'none';

Heading Text Style Table

PropertyMobileTabletDesktop
Font Size16px17px18px
Font Weight600600600
Line Height1.51.51.5
Letter Spacingundefinedundefinedundefined
Text Transformnonenonenone
FontPresets.playerFontPresets.playerFontPresets.playerFont
Text Color#F0F0F0#F0F0F0#F0F0F0
Content SourceTITLETITLETITLE
Is Visibletruetruetrue

Example Usage:

const headingTextConfig = {
  textStyle: {
    mobile: { fontSize: '16px', fontWeight: '600', textColor: '#F0F0F0' },
    tablet: { fontSize: '17px', fontWeight: '600', textColor: '#F0F0F0' },
    desktop: { fontSize: '18px', fontWeight: '600', textColor: '#F0F0F0' }
  },
};

myTheme.playerLayout.headingText = headingTextConfig;

buttons - BlazeVideosPlayerButtonsStyle

BlazeVideosPlayerButtonsStyle = {
  mute_unmute: BlazeButtonStyle;
  exit: BlazeButtonStyle;
  share: BlazeButtonStyle;
  like_unlike: BlazeButtonStyle;
  closed_captions: BlazeButtonStyle;
  play_pause: BlazeButtonStyle;
  prev_next: BlazeButtonStyle;
  fullscreen: BlazeButtonStyle;
};

BlazeButtonStyle = {
  mobile: BlazeButtonDeviceStyle;
  tablet: BlazeButtonDeviceStyle;
  desktop: BlazeButtonDeviceStyle;
};

BlazeButtonDeviceStyle = {
  width: string;
  height: string;
  color: string;
  padding: string;
  isVisible: boolean;
  borderRadius: string;
  backgroundColor: string;
};

Buttons Style Table - default values

Button NameDeviceWidthHeightColorPaddingVisibleBorder RadiusBackground ColorEmbedded Visible
Mute/UnmuteMobile24px24px#fff7px4pxtransparentN/A
Tablet26px26px#fff7px4pxtransparentN/A
Desktop28px28px#fff7px4pxtransparentN/A
ExitMobile24px24px#fff7px4pxtransparentN/A
Tablet26px26px#fff7px4pxtransparentN/A
Desktop28px28px#fff7px4pxtransparentN/A
ShareMobile24px24px#fff7px4pxtransparentN/A
Tablet26px26px#fff7px4pxtransparentN/A
Desktop28px28px#fff7px4pxtransparentN/A
Like/UnlikeMobile24px24px#ffd3257px4pxtransparentN/A
Tablet26px26px#ffd3257px4pxtransparentN/A
Desktop28px28px#ffd3257px4pxtransparentN/A
Play/PauseMobile38px38px#fff12px50%rgba(0, 0, 0, 0.5)N/A
Tablet42px42px#fff12px50%rgba(0, 0, 0, 0.5)N/A
Desktop28px28px#fff7px4pxtransparentN/A
Prev/NextMobile36px36px#fff10px50%rgba(0, 0, 0, 0.5)N/A
Tablet40px40px#fff10px50%rgba(0, 0, 0, 0.5)N/A
Desktop28px28px#fff7px4pxtransparentN/A
Closed CaptionsMobile24px24px#fff7px4pxtransparent
Tablet26px26px#fff7px4pxtransparent
Desktop28px28px#fff7px4pxtransparent
FullscreenMobile24px24px#fff7px4pxtransparentN/A
Tablet26px26px#fff7px4pxtransparentN/A
Desktop28px28px#fff7px4pxtransparentN/A

Example Usage:

const buttonConfig = {
  buttonStyle: {
    mobile: { padding: '10px 20px', fontSize: '14px', backgroundColor: '#FF5733', color: '#FFFFFF' },
    tablet: { padding: '12px 24px', fontSize: '16px', backgroundColor: '#FF5733', color: '#FFFFFF' },
    desktop: { padding: '14px 28px', fontSize: '18px', backgroundColor: '#FF5733', color: '#FFFFFF' }
  },
};

myTheme.playerLayout.buttons.share = buttonConfig;

cta - BlazeVideosPlayerCtaStyle

BlazeVideosPlayerCtaStyle {
  borderRadius: string;
  text: BlazeTextStyle;
  fontFamily?: string;
  height: string;
  icon: BlazeVideosPlayerCtaIconStyle;
  visibility: BlazeVideoPlayerVisibility;
  borderColor: string;
  horizontalAlignment: ButtonPositionType;
  isVisible: boolean;
}

BlazeTextStyle = {
  mobile: BlazeTextDeviceStyle;
  tablet: BlazeTextDeviceStyle;
  desktop: BlazeTextDeviceStyle;
};

 BlazeTextDeviceStyle = {
  fontSize: string;
  fontWeight: FontWeightType;
  lineHeight?: string;
  letterSpacing?: string;
  textTransform?: TextTransformType;
};

FontWeightType = 'normal' | 'bold' | 'bolder' | 'lighter' | 'inherit' | 'initial' | 'unset' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';

TextTransformType = 'capitalize' | 'uppercase' | 'lowercase' | 'none';

BlazeVideoPlayerVisibility = {
  duration: number; // The duration in seconds for which the CTA will be visible after the overlay is hidden.
  behavior: CtaVisibilityBehavior; // The behavior of the CTA.
};

CtaVisibilityBehavior = 'AlwaysVisible' | 'VisibleAfterOverlayHidden';

ButtonPositionType = 'LEFT' | 'CENTER' | 'RIGHT';

CTA Configuration Default Values

PropertyDescriptionDefault Value
borderRadiusThe corner radius of the CTA.'20px'
textThe text style for different devices.See text style table below.
fontFamilyThe font family for the CTA text.Presets.playerFont
heightThe height of the CTA.'40px'
iconThe icon style inside the CTA.See icon style table below.
visibilityThe visibility behavior of the CTA.See visibility table below.
borderColorThe border color of the CTA.'' (empty string)
horizontalAlignmentThe horizontal alignment of the CTA.'LEFT'
isVisibleThe visibility of the CTA.true

Text Style Default Values

DeviceFont SizeFont WeightLine HeightLetter Spacing
mobile'16px''700''17px''' (empty)
tablet'16px''700''17px''' (empty)
desktop'16px''700''17px''' (empty)

Icon Style Default Values

PropertyDescriptionDefault Value
positionThe position of the icon inside the CTA.'START'
colorThe color of the icon.'' (empty)
sizeThe size of the icon.'24px'
isVisibleWhether the icon is visible.true
urlThe URL of the icon image.linkIconSvg

Visibility Default Values

PropertyDescriptionDefault Value
durationDuration the CTA is visible after the overlay is hidden.5000 (milliseconds)
behaviorThe behavior of the CTA visibility.'VisibleAfterOverlayHidden'

Player Icons

BlazeVideoIconsStyle {
  play: string;
  pause: string;
  mute: string;
  unmute: string;
  share: string;
  exit: string;
  like: string;
  unlike: string;
  fullscreenEnter: string;
  fullscreenExit: string;
  closedCaptionsOn: string;
  closedCaptionsOff: string;
  navigation: {
    prevVideo: string;
    nextVideo: string;
  };
}

Icons and SVGs Table

Icon NameSVG Variable
MutemuteIconSvg
UnmuteunmuteIconSvg
ExitcloseIconSvg
ShareshareIconSvg
LikelikeIconSvg
UnlikeunlikeIconSvg
SettingssettingsIconSvg
PlayplayIconSvg
PausepauseIconSvg
Fullscreen EnterfullscreenEnterIconSvg
Fullscreen ExitfullscreenExitIconSvg
Closed Captions OnclosedCaptionsOnIconSvg
Closed Captions OffclosedCaptionsOffIconSvg
Prev VideoprevStoryIconSvg
Next VideonextStoryIconSvg

Example Usage:

BlazeVideosPlayerIconsStyle = {
  mute: `data:image/svg+xml;base64,${string}`;
  unmute: `data:image/svg+xml;base64,${string}`;
  exit: `data:image/svg+xml;base64,${string}`;
  share: `data:image/svg+xml;base64,${string}`;
  like: `data:image/svg+xml;base64,${string}`;
  unlike: `data:image/svg+xml;base64,${string}`;
  setting: `data:image/svg+xml;base64,${string}`;
  play: `data:image/svg+xml;base64,${string}`;
  pause: `data:image/svg+xml;base64,${string}`;
  fullscreenEnter: `data:image/svg+xml;base64,${string}`;
  fullscreenExit: `data:image/svg+xml;base64,${string}`;
  closedCaptionsOn: `data:image/svg+xml;base64,${string}`;
  closedCaptionsOff: `data:image/svg+xml;base64,${string}`;
  navigation: {
    prevVideo: `data:image/svg+xml;base64,${string}`;
    nextVideo: `data:image/svg+xml;base64,${string}`;
  };
};

buttons -BlazeVideosPlayerButtonsStyle

Button NameDeviceWidthHeightPaddingVisibilityBorder RadiusBackground Color
Mute/UnmuteMobile24px24px7px
Tablet26px26px7px
Desktop28px28px7px
ExitMobile24px24px7px
Tablet26px26px7px
Desktop28px28px7px
ShareMobile24px24px7px
Tablet26px26px7px
Desktop28px28px7px
Like/UnlikeMobile24px24px7px
Tablet26px26px7px
Desktop28px28px7px
Play/PauseMobile38px38px12px50%rgba(51,51,51,0.9)
Tablet42px42px12px50%rgba(51,51,51,0.9)
Desktop28px28px7px
Prev/NextMobile36px36px10px50%rgba(51,51,51,0.9)
Tablet40px40px10px50%rgba(51,51,51,0.9)
Desktop28px28px7px0
Closed CaptionsMobile24px24px7px
Tablet26px26px7px
Desktop28px28px7px
FullscreenMobile24px24px7px
Tablet26px26px7px
Desktop28px28px7px

Example Usage:

const iconStyles = {
  muteUnmute: {
    mobile: { isVisible: true, width: '22px', height: '22px', padding: '10px' },
    tablet: { isVisible: true, width: '22px', height: '22px', padding: '10px' },
    desktop: { isVisible: true, width: '25px', height: '25px', padding: '10px' }
  }
};

Seek Bar Configuration - BlazeVideosPlayerSeekBarStyle

BlazeVideosPlayerSeekBarStyle {
  isVisible: boolean;
  verticalMargin: string;
  horizontalMargin: string;
  playingState: BlazeSeekBarStyle;
  pausedState: BlazeSeekBarStyle;
}

BlazeSeekBarStyle = {
  isVisible: boolean;
  isThumbVisible: boolean;
  backgroundColor: string;
  progressColor: string;
  bufferProgressColor?: string;
  height: string;
  borderRadius: string;
  thumbColor: string;
  thumbSize: string;
};

Seek Bar - General Properties

PropertyValue
isVisibletrue
verticalSpacing'20px'
horizontalSpacing'15px'

Seek Bar - Playing State - BlazeSeekBarStyle

PropertyValue
isVisibletrue
isThumbVisiblefalse
backgroundColorColors.Gray
progressColorColors.White
height'3px'
borderRadius'5px'
thumbColor'' (empty)
thumbSize'0px'

Seek Bar - Paused State - BlazeSeekBarStyle

PropertyValue
isVisibletrue
isThumbVisibletrue
backgroundColorColors.Gray
progressColorColors.White
height'5px'
borderRadius'5px'
thumbColorColors.White
thumbSize'15px'

Example Usage:

const seekBar = {
  isVisible: true,
  bottomSpacing: '20px',
  playingState: {
    isVisible: true,
    backgroundColor: '#808080',
    progressColor: '#FFFFFF',
    height: '3px',
    isThumbVisible: false
  }
};

captions - BlazeVideosPlayerCaptionsStyle

Use this to customize the appearance and placement of closed captions in the inline video player.

BlazeVideosPlayerCaptionsStyle {
  font?: string;
  fontSize?: string;
  fontWeight?: FontWeightType;
  positioning?: {
    horizontal?: 'start' | 'center';
    vertical?: 'top' | 'center' | 'bottom';
  };
}

Captions properties

PropertyTypeSupported values
fontstringAny valid font family
fontSizestringAny valid CSS font size
fontWeightFontWeightTypeStandard font weight values
positioning.horizontalstringstart, center
positioning.verticalstringtop, center, bottom

Captions Default Values

PropertyDescriptionDefault Value
fontThe font family for the captions text.'"Inter", sans-serif'
fontWeightThe font weight for the captions text.'700'
positioning.horizontalThe horizontal alignment of the captions.'start'
positioning.verticalThe vertical alignment of the captions.'top'

Example Usage:

myTheme.playerStyle.captions = {
  font: "'Roboto', sans-serif",
  fontSize: '16px',
  fontWeight: '700',
  positioning: {
    horizontal: 'center',
    vertical: 'bottom'
  }
};

statusIndicator - BlazeVideosPlayerStatusIndicatorStyle

The status indicator appears in the video player header showing the current stream state: LIVE, UPCOMING, or ENDED.

BlazeVideosPlayerStatusIndicatorStyle {
  isVisible: boolean;
  padding: string;
  position: BlazeVideosPlayerStatusIndicatorPositionStyle;
  containerStyle?: BlazeVideosPlayerStatusIndicatorContainerStyle;
  streamStates: {
    upcoming: IndicatorStyle;
    live: IndicatorStyle;
    ended: IndicatorStyle;
  };
  upcomingDateStyle: IndicatorStyle;
}

BlazeVideosPlayerStatusIndicatorPositionStyle {
  top: string;
  left: string;
  right: string;
}

BlazeVideosPlayerStatusIndicatorContainerStyle {
  gap?: string;
  alignItems?: string;
  display?: string;
}

IndicatorStyle {
  backgroundColor: string;
  textColor: string;
  text: string;
  textSize: string;
  font: string;
  fontWeight?: FontWeightType;
  borderRadius: string;
  borderWidth: number;
  borderColor: string;
  padding: string;
  letterSpacing: string;
  isVisible: boolean;
  icon?: {
    url: string; // Base64-encoded SVG: data:image/svg+xml;base64,${string}
    color?: string;
    size?: string;
  };
}

Basic Configuration

// Enable/disable status indicator
myVideoTheme.playerStyle.statusIndicator.isVisible = true;

// Position in player (top-left corner by default)
myVideoTheme.playerStyle.statusIndicator.position.top = '16px';
myVideoTheme.playerStyle.statusIndicator.position.left = '16px';
myVideoTheme.playerStyle.statusIndicator.position.right = 'auto';

// Padding around the indicator
myVideoTheme.playerStyle.statusIndicator.padding = '8px';

Customize LIVE State

myVideoTheme.playerStyle.statusIndicator.streamStates.live.backgroundColor = '#FF0000';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.textColor = '#FFFFFF';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.text = 'LIVE';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.textSize = '12px';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.font = "'Roboto', sans-serif";
myVideoTheme.playerStyle.statusIndicator.streamStates.live.fontWeight = 'bold';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.borderRadius = '4px';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.borderWidth = 0;
myVideoTheme.playerStyle.statusIndicator.streamStates.live.borderColor = '#FFFFFF';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.padding = '4px 12px';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.letterSpacing = '0.5px';
myVideoTheme.playerStyle.statusIndicator.streamStates.live.isVisible = true;

// Optional: Add custom icon
myVideoTheme.playerStyle.statusIndicator.streamStates.live.icon = {
  url: 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiLz4=',
  color: '#FFFFFF',
  size: '12px'
};

Customize UPCOMING State

myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.backgroundColor = '#9C9C9C';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.textColor = '#FFFFFF';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.text = 'UPCOMING';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.textSize = '12px';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.font = "'Roboto', sans-serif";
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.borderRadius = '4px';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.padding = '4px 12px';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.letterSpacing = '0.5px';
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.isVisible = true;

// Optional: Add custom icon (base64-encoded SVG)
myVideoTheme.playerStyle.statusIndicator.streamStates.upcoming.icon = {
  url: 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiLz4=',
  color: '#FFFFFF',
  size: '12px'
};

Customize ENDED State

myVideoTheme.playerStyle.statusIndicator.streamStates.ended.backgroundColor = '#666666';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.textColor = '#FFFFFF';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.text = 'ENDED';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.textSize = '12px';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.font = "'Roboto', sans-serif";
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.borderRadius = '4px';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.padding = '4px 12px';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.letterSpacing = '0.5px';
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.isVisible = true;

// Optional: Add custom icon (base64-encoded SVG)
myVideoTheme.playerStyle.statusIndicator.streamStates.ended.icon = {
  url: 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiLz4=',
  color: '#FFFFFF',
  size: '12px'
};

Upcoming Date/Time Display

Shows countdown timer for upcoming streams:

myVideoTheme.playerStyle.statusIndicator.upcomingDateStyle.textColor = '#FFFFFF';
myVideoTheme.playerStyle.statusIndicator.upcomingDateStyle.textSize = '11px';
myVideoTheme.playerStyle.statusIndicator.upcomingDateStyle.font = "'Roboto', sans-serif";
myVideoTheme.playerStyle.statusIndicator.upcomingDateStyle.padding = '2px 0 0 0';
myVideoTheme.playerStyle.statusIndicator.upcomingDateStyle.backgroundColor = 'transparent';
myVideoTheme.playerStyle.statusIndicator.upcomingDateStyle.isVisible = true;

Optional: Inline Position (Next to Title)

Position the status indicator inline with the video title instead of absolutely positioned:

myVideoTheme.playerStyle.statusIndicator.containerStyle = {
  display: 'flex',
  gap: '12px',
  alignItems: 'center'
};

backToLiveButton - BlazeVideosPlayerBackToLiveButtonStyle

The back-to-live button appears during live streams, allowing viewers to return to the live edge when they've scrubbed backward into DVR (Digital Video Recording) content.

BlazeVideosPlayerBackToLiveButtonStyle {
  margins: string;
  padding: string;
  playbackStates: {
    atLiveEdgeState: BlazeVideosPlayerBackToLiveButtonStateStyle;
    behindLiveState: BlazeVideosPlayerBackToLiveButtonStateStyle;
  };
}

BlazeVideosPlayerBackToLiveButtonStateStyle {
  text: string;
  textColor: string;
  textSize: string;
  font: string;
  backgroundColor: string;
  borderRadius: string;
  icon?: {
    url: string; // Base64-encoded SVG: data:image/svg+xml;base64,${string}
    color?: string;
  };
}

Button States

  1. At Live Edge: Shows "LIVE" indicator (passive, non-clickable)
  2. Behind Live: Shows "Back to Live" button (clickable, returns to live edge)

Configuration

Example Usage:

// Margins and padding apply to both states
myTheme.playerStyle.backToLiveButton.margins = '0 16px 16px 0';
myTheme.playerStyle.backToLiveButton.padding = '8px 16px';

// Customize "At Live Edge" state (passive indicator)

myTheme.playerStyle.backToLiveButton.playbackStates.atLiveEdgeState.text = 'LIVE';
myTheme.playerStyle.backToLiveButton.playbackStates.atLiveEdgeState.textColor = '#FFFFFF';
myTheme.playerStyle.backToLiveButton.playbackStates.atLiveEdgeState.textSize = '13px';
myTheme.playerStyle.backToLiveButton.playbackStates.atLiveEdgeState.font = "'Roboto', sans-serif";
myTheme.playerStyle.backToLiveButton.playbackStates.atLiveEdgeState.backgroundColor = 'rgba(255, 0, 0, 0.9)';
myTheme.playerStyle.backToLiveButton.playbackStates.atLiveEdgeState.borderRadius = '20px';

// Customize "Behind Live" state (clickable button)
myTheme.playerStyle.backToLiveButton.playbackStates.behindLiveState.text = 'Back to Live';
myTheme.playerStyle.backToLiveButton.playbackStates.behindLiveState.textColor = '#FFFFFF';
myTheme.playerStyle.backToLiveButton.playbackStates.behindLiveState.textSize = '13px';
myTheme.playerStyle.backToLiveButton.playbackStates.behindLiveState.backgroundColor = 'rgba(0, 0, 0, 0.7)';
myTheme.playerStyle.backToLiveButton.playbackStates.behindLiveState.borderRadius = '20px';

Button Behavior:

  • Automatically appears in bottom-right corner during live playback
  • Shows "LIVE" indicator when viewer is at the live edge
  • Changes to "Back to Live" button when viewer scrubs backward
  • Clicking returns viewer to live edge with smooth transition
  • Hidden for VOD content and ended streams without DVR

Live Stream Seek Bar Behavior

The seek bar works the same as documented above in the Seek Bar Configuration section, but has special behavior for live streams:

  • Progress bar fills from left (oldest DVR content) to right (live edge)
  • Thumb appears when scrubbing backward from live edge
  • Thumb automatically hidden when at live edge
  • DVR window length determined by backend configuration
  • User can scrub backward to review recent moments

Example Usage:

// Customize seek bar for live streams (use red color)
myTheme.playerStyle.seekBar.playingState.progressColor = '#FF0000';
myTheme.playerStyle.seekBar.playingState.thumbColor = '#FF0000';
myTheme.playerStyle.seekBar.pausedState.progressColor = '#FF0000';
myTheme.playerStyle.seekBar.pausedState.thumbColor = '#FFFFFF';

Default Values: Live Streaming Components

Status Indicator Defaults

PropertyValue
isVisibletrue
padding'8px'
position.top'16px'
position.left'16px'
position.right'auto'

Live State Defaults

PropertyValue
backgroundColor'#FF0000'
textColor'#FFFFFF'
text'LIVE'
textSize'12px'
borderRadius'4px'
padding'4px 12px'
isVisibletrue

Upcoming State Defaults

PropertyValue
backgroundColor'#9C9C9C'
textColor'#FFFFFF'
text'UPCOMING'
textSize'12px'
borderRadius'4px'
padding'4px 12px'
isVisibletrue

Ended State Defaults

PropertyValue
backgroundColor'#666666'
textColor'#FFFFFF'
text'ENDED'
textSize'12px'
borderRadius'4px'
padding'4px 12px'
isVisibletrue

Back-to-Live Button Defaults

PropertyValue
margins'0 16px 16px 0'
padding'8px 16px'

At Live Edge State Defaults

PropertyValue
text'LIVE'
textColor'#FFFFFF'
textSize'13px'
backgroundColor'rgba(255, 0, 0, 0.9)'
borderRadius'20px'

Behind Live State Defaults

PropertyValue
text'Back to Live'
textColor'#FFFFFF'
textSize'13px'
backgroundColor'rgba(0, 0, 0, 0.7)'
borderRadius'20px'

Did this page help you?