Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

styles.js 559B

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. });