Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // @flow
  2. import { StyleSheet } from 'react-native';
  3. import { BoxModel, ColorPalette } from '../../../base/styles';
  4. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  5. export const TEXT_COLOR = BaseTheme.palette.text01;
  6. /**
  7. * The React {@code Component} styles of the overlay feature.
  8. */
  9. export default {
  10. connectIndicator: {
  11. margin: BoxModel.margin
  12. },
  13. /**
  14. * Style for a backdrop overlay covering the screen the the overlay is
  15. * rendered.
  16. */
  17. container: {
  18. ...StyleSheet.absoluteFillObject,
  19. backgroundColor: ColorPalette.black
  20. },
  21. loadingOverlayText: {
  22. color: TEXT_COLOR
  23. },
  24. loadingOverlayWrapper: {
  25. ...StyleSheet.absoluteFillObject,
  26. alignItems: 'center',
  27. backgroundColor: BaseTheme.palette.uiBackground,
  28. flex: 1,
  29. flexDirection: 'column',
  30. justifyContent: 'center'
  31. },
  32. safeContainer: {
  33. flex: 1
  34. }
  35. };