2018-05-23 13:44:58 +00:00
|
|
|
// @flow
|
|
|
|
|
2018-11-19 14:09:09 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../../base/styles';
|
2022-01-13 12:15:53 +00:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme';
|
2018-05-23 13:44:58 +00:00
|
|
|
|
2018-09-11 10:16:01 +00:00
|
|
|
export const LIVE_LABEL_COLOR = ColorPalette.blue;
|
|
|
|
|
2018-05-23 13:44:58 +00:00
|
|
|
/**
|
|
|
|
* The styles of the React {@code Components} of the feature recording.
|
|
|
|
*/
|
|
|
|
export default createStyleSheet({
|
|
|
|
|
2022-01-13 12:15:53 +00:00
|
|
|
/**
|
|
|
|
* Style for the recording indicator.
|
|
|
|
*/
|
|
|
|
indicatorStyle: {
|
|
|
|
marginRight: 4,
|
|
|
|
marginLeft: 0,
|
|
|
|
marginBottom: 0
|
|
|
|
},
|
|
|
|
|
2018-05-23 13:44:58 +00:00
|
|
|
/**
|
|
|
|
* Style for the recording indicator.
|
|
|
|
*/
|
|
|
|
indicatorLive: {
|
2018-09-11 10:16:01 +00:00
|
|
|
backgroundColor: LIVE_LABEL_COLOR
|
2018-05-23 13:44:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Style for the recording indicator.
|
|
|
|
*/
|
|
|
|
indicatorRecording: {
|
2022-01-13 12:15:53 +00:00
|
|
|
backgroundColor: BaseTheme.palette.iconError
|
2018-05-23 13:44:58 +00:00
|
|
|
}
|
|
|
|
});
|