You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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