Theme.ts 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. export default {
  2. colors: {
  3. gray900: '#262626',
  4. gray800: '#404040',
  5. gray700: '#595959',
  6. gray600: '#737373',
  7. gray500: '#8c8c8c',
  8. gray400: '#a6a6a6',
  9. gray300: '#bfbfbf',
  10. gray200: '#d9d9d9',
  11. gray100: '#f2f2f2',
  12. brand900: '#420a2b',
  13. brand800: '#6e1147',
  14. brand700: '#9a1864',
  15. brand600: '#c61f80',
  16. brand500: '#e0399a',
  17. brand400: '#e765b0',
  18. brand300: '#ee91c7',
  19. brand200: '#f5bddd',
  20. brand100: '#fce9f4',
  21. red100: '#fce8ea',
  22. red200: '#f7bac1',
  23. red300: '#f28c98',
  24. red400: '#ed5e6f',
  25. red500: '#e83045',
  26. red600: '#cf172c',
  27. red700: '#a11222',
  28. red800: '#730d18',
  29. red900: '#45080f',
  30. yellow100: '#fef9e6',
  31. yellow200: '#FFF2C7',
  32. yellow300: '#fae084',
  33. yellow400: '#f8d453',
  34. yellow500: '#FFC21C',
  35. yellow600: '#ddae09',
  36. yellow700: '#ac8707',
  37. yellow800: '#7b6005',
  38. yellow900: '#4a3a03',
  39. green100: '#eefbe9',
  40. green200: '#cdf4bd',
  41. green300: '#84CCC9',
  42. green400: '#8be665',
  43. green500: '#69df39',
  44. green600: '#50c620',
  45. green700: '#3e9a19',
  46. green800: '#2c6e12',
  47. green900: '#1b420b',
  48. blue100: '#e8f2fc',
  49. blue200: '#bad7f7',
  50. blue300: '#8cbcf2',
  51. blue400: '#5ea1ed',
  52. blue500: '#3087e8',
  53. blue600: '#176dcf',
  54. blue700: '#1255a1',
  55. blue800: '#0d3d73',
  56. blue900: '#082445',
  57. teal100: '#e8fdfc',
  58. teal200: '#b9f8f5',
  59. teal300: '#8bf4ee',
  60. teal400: '#5cefe7',
  61. teal500: '#2eebe0',
  62. teal600: '#14d1c6',
  63. teal700: '#10a39a',
  64. teal800: '#0b746e',
  65. teal900: '#074642',
  66. white: '#FFFFFF',
  67. black: '#000000',
  68. transparent: 'rgba(0,0,0,0)',
  69. black600: 'rgba(0,0,0,0.6)',
  70. },
  71. fontSize: {
  72. xs: 10,
  73. sm: 12,
  74. md: 14,
  75. lg: 15,
  76. xl: 16,
  77. '2xl': 19,
  78. '3xl': 21,
  79. '4xl': 24,
  80. '5xl': 27,
  81. '6xl': 32,
  82. },
  83. shadowColor: '#000',
  84. shadow: {
  85. none: {},
  86. xs: {
  87. shadowOffset: {
  88. width: 0,
  89. height: 1,
  90. },
  91. shadowOpacity: 0.18,
  92. shadowRadius: 1.0,
  93. elevation: 1,
  94. },
  95. sm: {
  96. shadowOffset: {
  97. width: 0,
  98. height: 2,
  99. },
  100. shadowOpacity: 0.23,
  101. shadowRadius: 2.62,
  102. elevation: 4,
  103. },
  104. md: {
  105. shadowOffset: {
  106. width: 0,
  107. height: 4,
  108. },
  109. shadowOpacity: 0.3,
  110. shadowRadius: 4.65,
  111. elevation: 8,
  112. },
  113. lg: {
  114. shadowOffset: {
  115. width: 0,
  116. height: 6,
  117. },
  118. shadowOpacity: 0.37,
  119. shadowRadius: 7.49,
  120. elevation: 12,
  121. },
  122. xl: {
  123. shadowOffset: {
  124. width: 0,
  125. height: 8,
  126. },
  127. shadowOpacity: 0.44,
  128. shadowRadius: 10.32,
  129. elevation: 16,
  130. },
  131. '2xl': {
  132. shadowOffset: {
  133. width: 0,
  134. height: 10,
  135. },
  136. shadowOpacity: 0.51,
  137. shadowRadius: 13.16,
  138. elevation: 20,
  139. },
  140. },
  141. borderRadius: {
  142. none: 0,
  143. xs: 2,
  144. sm: 4,
  145. md: 6,
  146. lg: 8,
  147. xl: 12,
  148. '2xl': 16,
  149. circle: 1000000,
  150. },
  151. spacing: {
  152. none: 0,
  153. xs: 4,
  154. sm: 6,
  155. md: 8,
  156. lg: 12,
  157. xl: 24,
  158. '2xl': 32,
  159. '3xl': 64,
  160. },
  161. };