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.

12345678910111213141516171819
  1. // @flow
  2. import { ColorPalette } from '../../../base/styles';
  3. export default {
  4. displayNameBackdrop: {
  5. alignSelf: 'center',
  6. backgroundColor: 'rgba(28, 32, 37, 0.6)',
  7. borderRadius: 4,
  8. margin: 16,
  9. paddingHorizontal: 16,
  10. paddingVertical: 4
  11. },
  12. displayNameText: {
  13. color: ColorPalette.white,
  14. fontSize: 14
  15. }
  16. };