You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export default {
  3. displayNameBackdrop: {
  4. alignSelf: 'center',
  5. backgroundColor: BaseTheme.palette.ui01,
  6. borderRadius: BaseTheme.shape.borderRadius,
  7. paddingHorizontal: BaseTheme.spacing[3],
  8. paddingVertical: BaseTheme.spacing[1]
  9. },
  10. displayNamePadding: {
  11. padding: BaseTheme.spacing[1],
  12. paddingRight: 6
  13. },
  14. displayNameText: {
  15. color: BaseTheme.palette.text01,
  16. fontSize: 14,
  17. fontWeight: 'bold'
  18. }
  19. };