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

styles.js 562B

1234567891011121314151617181920212223242526
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  3. export const LIVE_LABEL_COLOR = ColorPalette.blue;
  4. export const REC_LABEL_COLOR = ColorPalette.red;
  5. /**
  6. * The styles of the React {@code Components} of the feature recording.
  7. */
  8. export default createStyleSheet({
  9. /**
  10. * Style for the recording indicator.
  11. */
  12. indicatorLive: {
  13. backgroundColor: LIVE_LABEL_COLOR
  14. },
  15. /**
  16. * Style for the recording indicator.
  17. */
  18. indicatorRecording: {
  19. backgroundColor: REC_LABEL_COLOR
  20. }
  21. });