您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 386B

123456789101112131415161718
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../base/styles';
  3. export const AUD_LABEL_COLOR = ColorPalette.green;
  4. /**
  5. * The styles of the React {@code Components} of the feature video-quality.
  6. */
  7. export default createStyleSheet({
  8. /**
  9. * Style for the audio-only indicator.
  10. */
  11. indicatorAudioOnly: {
  12. backgroundColor: AUD_LABEL_COLOR
  13. }
  14. });