Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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