mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Replace tokens with ones that are part of the Design System and are either the same or very similar
30 lines
606 B
JavaScript
30 lines
606 B
JavaScript
// @flow
|
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
export const INDICATOR_COLOR = BaseTheme.palette.ui07;
|
|
|
|
export default {
|
|
indicatorWrapper: {
|
|
alignItems: 'center',
|
|
backgroundColor: BaseTheme.palette.ui10,
|
|
height: '100%',
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
sharedDocContainer: {
|
|
backgroundColor: BaseTheme.palette.ui10,
|
|
flex: 1,
|
|
paddingRight: BaseTheme.spacing[3]
|
|
},
|
|
|
|
sharedDoc: {
|
|
marginBottom: BaseTheme.spacing[3]
|
|
},
|
|
|
|
webView: {
|
|
backgroundColor: BaseTheme.palette.ui10
|
|
}
|
|
};
|