您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // @flow
  2. import { ColorPalette } from '../../../../base/styles';
  3. export const AVATAR_SIZE = 40;
  4. export const DARK_GREY = 'rgb(28, 32, 37)';
  5. export const LIGHT_GREY = 'rgb(209, 219, 232)';
  6. export const ICON_SIZE = 15;
  7. export default {
  8. avatar: {
  9. backgroundColor: LIGHT_GREY
  10. },
  11. avatarText: {
  12. color: 'rgb(28, 32, 37)',
  13. fontSize: 12
  14. },
  15. avoidingView: {
  16. flex: 1
  17. },
  18. dialogWrapper: {
  19. alignItems: 'stretch',
  20. backgroundColor: ColorPalette.white,
  21. flex: 1,
  22. flexDirection: 'column'
  23. },
  24. itemLinesStyle: {
  25. color: 'rgb(118, 136, 152)',
  26. fontSize: 13
  27. },
  28. itemText: {
  29. color: DARK_GREY,
  30. fontSize: 14,
  31. fontWeight: 'normal'
  32. },
  33. itemWrapper: {
  34. alignItems: 'center',
  35. flexDirection: 'row',
  36. paddingLeft: 5
  37. },
  38. radioButton: {
  39. color: DARK_GREY,
  40. fontSize: 16,
  41. padding: 2
  42. },
  43. resultList: {
  44. padding: 5
  45. },
  46. searchField: {
  47. backgroundColor: 'rgb(240, 243, 247)',
  48. borderBottomRightRadius: 10,
  49. borderTopRightRadius: 10,
  50. color: DARK_GREY,
  51. flex: 1,
  52. fontSize: 17,
  53. paddingVertical: 7
  54. },
  55. separator: {
  56. borderBottomColor: LIGHT_GREY,
  57. borderBottomWidth: 1,
  58. marginLeft: 85
  59. },
  60. searchFieldWrapper: {
  61. alignItems: 'stretch',
  62. flexDirection: 'row',
  63. height: 52,
  64. paddingHorizontal: 15,
  65. paddingVertical: 8
  66. },
  67. searchIcon: {
  68. color: DARK_GREY,
  69. fontSize: ICON_SIZE
  70. },
  71. searchIconWrapper: {
  72. alignItems: 'center',
  73. backgroundColor: 'rgb(240, 243, 247)',
  74. borderBottomLeftRadius: 10,
  75. borderTopLeftRadius: 10,
  76. flexDirection: 'row',
  77. justifyContent: 'center',
  78. width: ICON_SIZE + 16
  79. }
  80. };