| 1234567891011121314151617181920212223242526 |
- // @flow
-
- import { ColorPalette, createStyleSheet } from '../../base/styles';
-
- export const LIVE_LABEL_COLOR = ColorPalette.blue;
- export const REC_LABEL_COLOR = ColorPalette.red;
-
- /**
- * The styles of the React {@code Components} of the feature recording.
- */
- export default createStyleSheet({
-
- /**
- * Style for the recording indicator.
- */
- indicatorLive: {
- backgroundColor: LIVE_LABEL_COLOR
- },
-
- /**
- * Style for the recording indicator.
- */
- indicatorRecording: {
- backgroundColor: REC_LABEL_COLOR
- }
- });
|