Files
jitsi-meet/react/features/recording/components/native/styles.js

27 lines
562 B
JavaScript
Raw Normal View History

// @flow
2018-11-19 15:09:09 +01:00
import { ColorPalette, createStyleSheet } from '../../../base/styles';
2018-09-11 12:16:01 +02:00
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: {
2018-09-11 12:16:01 +02:00
backgroundColor: LIVE_LABEL_COLOR
},
/**
* Style for the recording indicator.
*/
indicatorRecording: {
2018-09-11 12:16:01 +02:00
backgroundColor: REC_LABEL_COLOR
}
});