mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 17:37:49 +00:00
27 lines
490 B
JavaScript
27 lines
490 B
JavaScript
// @flow
|
|
|
|
import { ColorPalette } from '../../../../base/styles';
|
|
|
|
export const INDICATOR_COLOR = ColorPalette.lightGrey;
|
|
|
|
const WV_BACKGROUND = 'rgb(71, 71, 71)';
|
|
|
|
export default {
|
|
|
|
backDrop: {
|
|
backgroundColor: WV_BACKGROUND
|
|
},
|
|
|
|
indicatorWrapper: {
|
|
alignItems: 'center',
|
|
backgroundColor: ColorPalette.white,
|
|
height: '100%',
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
webView: {
|
|
backgroundColor: WV_BACKGROUND,
|
|
flex: 1
|
|
}
|
|
};
|