Files
jitsi-meet/react/features/display-name/components/native/styles.js
Robert Pintilii 1bf0bd6bca fix(design-system) Remove tokens that are not part of DS (#13122)
Replace tokens with ones that are part of the Design System and are either the same or very similar
2023-03-29 09:20:18 +03:00

25 lines
577 B
JavaScript

// @flow
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
export default {
displayNameBackdrop: {
alignSelf: 'center',
backgroundColor: BaseTheme.palette.ui01,
borderRadius: BaseTheme.shape.borderRadius,
paddingHorizontal: BaseTheme.spacing[3],
paddingVertical: BaseTheme.spacing[1]
},
displayNamePadding: {
padding: BaseTheme.spacing[1],
paddingRight: 6
},
displayNameText: {
color: BaseTheme.palette.text01,
fontSize: 14,
fontWeight: 'bold'
}
};