mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-19 14:27:49 +00:00
Replace tokens with ones that are part of the Design System and are either the same or very similar
28 lines
533 B
JavaScript
28 lines
533 B
JavaScript
// @flow
|
|
|
|
import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
|
|
|
|
export const INDICATOR_COLOR = BaseTheme.palette.ui07;
|
|
|
|
const WV_BACKGROUND = BaseTheme.palette.ui03;
|
|
|
|
export default {
|
|
|
|
backDrop: {
|
|
backgroundColor: WV_BACKGROUND,
|
|
flex: 1
|
|
},
|
|
|
|
indicatorWrapper: {
|
|
alignItems: 'center',
|
|
backgroundColor: BaseTheme.palette.ui10,
|
|
height: '100%',
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
webView: {
|
|
backgroundColor: WV_BACKGROUND,
|
|
flex: 1
|
|
}
|
|
};
|