@ornikar/bumper 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/.eslintrc.json +3 -0
  2. package/.vscode/settings.json +3 -0
  3. package/CHANGELOG.md +20 -0
  4. package/dist/definitions/components/breakpoints/SwitchBreakpoins.d.ts +5 -0
  5. package/dist/definitions/components/breakpoints/SwitchBreakpoins.d.ts.map +1 -0
  6. package/dist/definitions/components/breakpoints/hooks/useBreakpointValue.d.ts +3 -0
  7. package/dist/definitions/components/breakpoints/hooks/useBreakpointValue.d.ts.map +1 -0
  8. package/dist/definitions/components/breakpoints/hooks/useCurrentBreakpointName.d.ts +3 -0
  9. package/dist/definitions/components/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +1 -0
  10. package/dist/definitions/components/breakpoints/hooks/useWindowSize.d.ts +2 -0
  11. package/dist/definitions/components/breakpoints/hooks/useWindowSize.d.ts.map +1 -0
  12. package/dist/definitions/components/breakpoints/utils/breakpointsUtils.d.ts +10 -0
  13. package/dist/definitions/components/breakpoints/utils/breakpointsUtils.d.ts.map +1 -0
  14. package/dist/definitions/components/primitives/Stacks.d.ts +9 -0
  15. package/dist/definitions/components/primitives/Stacks.d.ts.map +1 -0
  16. package/dist/definitions/components/primitives/View.d.ts +5 -0
  17. package/dist/definitions/components/primitives/View.d.ts.map +1 -0
  18. package/dist/definitions/components/typography/Typograhy.d.ts +40 -0
  19. package/dist/definitions/components/typography/Typograhy.d.ts.map +1 -0
  20. package/dist/definitions/components/typography/utils/getTypeAndWeightValues.d.ts +9 -0
  21. package/dist/definitions/components/typography/utils/getTypeAndWeightValues.d.ts.map +1 -0
  22. package/dist/definitions/core/BumperDecorator.d.ts +2 -0
  23. package/dist/definitions/core/BumperDecorator.d.ts.map +1 -0
  24. package/dist/definitions/core/BumperProvider.d.ts +6 -0
  25. package/dist/definitions/core/BumperProvider.d.ts.map +1 -0
  26. package/dist/definitions/index.d.ts +10 -0
  27. package/dist/definitions/index.d.ts.map +1 -0
  28. package/dist/definitions/story-components/StorySection.d.ts +20 -0
  29. package/dist/definitions/story-components/StorySection.d.ts.map +1 -0
  30. package/dist/definitions/story-components/StoryTitle.d.ts +6 -0
  31. package/dist/definitions/story-components/StoryTitle.d.ts.map +1 -0
  32. package/dist/definitions/tamagui.config.d.ts +148 -0
  33. package/dist/definitions/tamagui.config.d.ts.map +1 -0
  34. package/dist/definitions/themes/light.d.ts +53 -0
  35. package/dist/definitions/themes/light.d.ts.map +1 -0
  36. package/dist/definitions/themes/palettes/deepPurpleColorPalette.d.ts +86 -0
  37. package/dist/definitions/themes/palettes/deepPurpleColorPalette.d.ts.map +1 -0
  38. package/dist/definitions/themes/utils/breakpoints.d.ts +15 -0
  39. package/dist/definitions/themes/utils/breakpoints.d.ts.map +1 -0
  40. package/dist/definitions/tokens/fonts.d.ts +18 -0
  41. package/dist/definitions/tokens/fonts.d.ts.map +1 -0
  42. package/dist/definitions/tokens/size.d.ts +11 -0
  43. package/dist/definitions/tokens/size.d.ts.map +1 -0
  44. package/dist/definitions/tokens/space.d.ts +16 -0
  45. package/dist/definitions/tokens/space.d.ts.map +1 -0
  46. package/dist/index-metro.es.android.js +396 -0
  47. package/dist/index-metro.es.android.js.map +1 -0
  48. package/dist/index-metro.es.ios.js +396 -0
  49. package/dist/index-metro.es.ios.js.map +1 -0
  50. package/dist/index-node-22.17.cjs.js +405 -0
  51. package/dist/index-node-22.17.cjs.js.map +1 -0
  52. package/dist/index-node-22.17.cjs.web.js +405 -0
  53. package/dist/index-node-22.17.cjs.web.js.map +1 -0
  54. package/dist/index-node-22.17.es.mjs +395 -0
  55. package/dist/index-node-22.17.es.mjs.map +1 -0
  56. package/dist/index-node-22.17.es.web.mjs +395 -0
  57. package/dist/index-node-22.17.es.web.mjs.map +1 -0
  58. package/dist/index.es.js +392 -0
  59. package/dist/index.es.js.map +1 -0
  60. package/dist/index.es.web.js +392 -0
  61. package/dist/index.es.web.js.map +1 -0
  62. package/dist/tsbuildinfo +1 -0
  63. package/package.json +79 -0
  64. package/src/.eslintrc.json +20 -0
  65. package/src/components/breakpoints/SwitchBreakpoins.tsx +12 -0
  66. package/src/components/breakpoints/__snapshots__/breakpoints.stories.tsx.snap +49 -0
  67. package/src/components/breakpoints/__snapshots_web__/breakpoints.stories.tsx.snap +43 -0
  68. package/src/components/breakpoints/breakpoints.stories.tsx +45 -0
  69. package/src/components/breakpoints/hooks/useBreakpointValue.ts +12 -0
  70. package/src/components/breakpoints/hooks/useCurrentBreakpointName.ts +20 -0
  71. package/src/components/breakpoints/hooks/useWindowSize.ts +1 -0
  72. package/src/components/breakpoints/utils/breakpointsUtils.test.ts +85 -0
  73. package/src/components/breakpoints/utils/breakpointsUtils.ts +28 -0
  74. package/src/components/primitives/Stack.stories.tsx +62 -0
  75. package/src/components/primitives/Stacks.ts +19 -0
  76. package/src/components/primitives/View.stories.tsx +13 -0
  77. package/src/components/primitives/View.ts +5 -0
  78. package/src/components/primitives/__snapshots__/Stack.stories.tsx.snap +376 -0
  79. package/src/components/primitives/__snapshots__/View.stories.tsx.snap +25 -0
  80. package/src/components/primitives/__snapshots_web__/Stack.stories.tsx.snap +190 -0
  81. package/src/components/primitives/__snapshots_web__/View.stories.tsx.snap +28 -0
  82. package/src/components/typography/Typograhy.tsx +130 -0
  83. package/src/components/typography/Typography.stories.tsx +144 -0
  84. package/src/components/typography/__snapshots__/Typography.stories.tsx.snap +1471 -0
  85. package/src/components/typography/__snapshots_web__/Typography.stories.tsx.snap +605 -0
  86. package/src/components/typography/utils/getTypeAndWeightValues.test.tsx +147 -0
  87. package/src/components/typography/utils/getTypeAndWeightValues.tsx +32 -0
  88. package/src/core/BumperDecorator.tsx +11 -0
  89. package/src/core/BumperProvider.tsx +15 -0
  90. package/src/index.ts +11 -0
  91. package/src/story-components/StorySection.tsx +70 -0
  92. package/src/story-components/StoryTitle.tsx +16 -0
  93. package/src/tamagui.config.ts +43 -0
  94. package/src/themes/__snapshots__/light.stories.tsx.snap +2192 -0
  95. package/src/themes/__snapshots_web__/light.stories.tsx.snap +985 -0
  96. package/src/themes/light.stories.tsx +38 -0
  97. package/src/themes/light.ts +59 -0
  98. package/src/themes/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +2770 -0
  99. package/src/themes/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1213 -0
  100. package/src/themes/palettes/deepPurpleColorPalette.stories.tsx +37 -0
  101. package/src/themes/palettes/deepPurpleColorPalette.ts +147 -0
  102. package/src/themes/utils/breakpoints.ts +15 -0
  103. package/src/tokens/fonts.ts +95 -0
  104. package/src/tokens/size.ts +10 -0
  105. package/src/tokens/space.ts +15 -0
  106. package/tsconfig.build.json +25 -0
  107. package/tsconfig.eslint.json +6 -0
  108. package/tsconfig.json +21 -0
@@ -0,0 +1,2770 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`bumper/Core Tokens Deep Purple Palette 1`] = `
4
+ <RNCSafeAreaProvider
5
+ onInsetsChange={[Function]}
6
+ style={
7
+ [
8
+ {
9
+ "flex": 1,
10
+ },
11
+ undefined,
12
+ ]
13
+ }
14
+ >
15
+ <View
16
+ style={
17
+ {
18
+ "flexDirection": "column",
19
+ "paddingBottom": 4,
20
+ "paddingLeft": 4,
21
+ "paddingRight": 4,
22
+ "paddingTop": 4,
23
+ }
24
+ }
25
+ >
26
+ <Text
27
+ style={
28
+ {
29
+ "fontFamily": "GTStandardSemibold",
30
+ "fontSize": 38,
31
+ "letterSpacing": 0,
32
+ "lineHeight": 48,
33
+ "marginBottom": 4,
34
+ }
35
+ }
36
+ suppressHighlighting={true}
37
+ >
38
+ Palette
39
+ </Text>
40
+ <View
41
+ style={
42
+ {
43
+ "backgroundColor": "#ffffff",
44
+ "borderBottomColor": "#A8A8A8",
45
+ "borderBottomWidth": 2,
46
+ "borderStyle": "solid",
47
+ "paddingBottom": 8,
48
+ "paddingLeft": 8,
49
+ "paddingRight": 8,
50
+ "paddingTop": 8,
51
+ }
52
+ }
53
+ >
54
+ <Text
55
+ style={
56
+ {
57
+ "fontFamily": "GTStandard",
58
+ }
59
+ }
60
+ suppressHighlighting={true}
61
+ >
62
+ deepPurple.5
63
+ </Text>
64
+ <Text
65
+ style={
66
+ {
67
+ "fontFamily": "GTStandard",
68
+ }
69
+ }
70
+ suppressHighlighting={true}
71
+ >
72
+ #936C93
73
+ </Text>
74
+ <View
75
+ style={
76
+ {
77
+ "backgroundColor": "#936C93",
78
+ "height": 20,
79
+ "width": 20,
80
+ }
81
+ }
82
+ />
83
+ </View>
84
+ <View
85
+ style={
86
+ {
87
+ "backgroundColor": "#ffffff",
88
+ "borderBottomColor": "#A8A8A8",
89
+ "borderBottomWidth": 2,
90
+ "borderStyle": "solid",
91
+ "paddingBottom": 8,
92
+ "paddingLeft": 8,
93
+ "paddingRight": 8,
94
+ "paddingTop": 8,
95
+ }
96
+ }
97
+ >
98
+ <Text
99
+ style={
100
+ {
101
+ "fontFamily": "GTStandard",
102
+ }
103
+ }
104
+ suppressHighlighting={true}
105
+ >
106
+ deepPurple.6
107
+ </Text>
108
+ <Text
109
+ style={
110
+ {
111
+ "fontFamily": "GTStandard",
112
+ }
113
+ }
114
+ suppressHighlighting={true}
115
+ >
116
+ #7A587A
117
+ </Text>
118
+ <View
119
+ style={
120
+ {
121
+ "backgroundColor": "#7A587A",
122
+ "height": 20,
123
+ "width": 20,
124
+ }
125
+ }
126
+ />
127
+ </View>
128
+ <View
129
+ style={
130
+ {
131
+ "backgroundColor": "#ffffff",
132
+ "borderBottomColor": "#A8A8A8",
133
+ "borderBottomWidth": 2,
134
+ "borderStyle": "solid",
135
+ "paddingBottom": 8,
136
+ "paddingLeft": 8,
137
+ "paddingRight": 8,
138
+ "paddingTop": 8,
139
+ }
140
+ }
141
+ >
142
+ <Text
143
+ style={
144
+ {
145
+ "fontFamily": "GTStandard",
146
+ }
147
+ }
148
+ suppressHighlighting={true}
149
+ >
150
+ deepPurple.7
151
+ </Text>
152
+ <Text
153
+ style={
154
+ {
155
+ "fontFamily": "GTStandard",
156
+ }
157
+ }
158
+ suppressHighlighting={true}
159
+ >
160
+ #6E4D6E
161
+ </Text>
162
+ <View
163
+ style={
164
+ {
165
+ "backgroundColor": "#6E4D6E",
166
+ "height": 20,
167
+ "width": 20,
168
+ }
169
+ }
170
+ />
171
+ </View>
172
+ <View
173
+ style={
174
+ {
175
+ "backgroundColor": "#ffffff",
176
+ "borderBottomColor": "#A8A8A8",
177
+ "borderBottomWidth": 2,
178
+ "borderStyle": "solid",
179
+ "paddingBottom": 8,
180
+ "paddingLeft": 8,
181
+ "paddingRight": 8,
182
+ "paddingTop": 8,
183
+ }
184
+ }
185
+ >
186
+ <Text
187
+ style={
188
+ {
189
+ "fontFamily": "GTStandard",
190
+ }
191
+ }
192
+ suppressHighlighting={true}
193
+ >
194
+ deepPurple.8
195
+ </Text>
196
+ <Text
197
+ style={
198
+ {
199
+ "fontFamily": "GTStandard",
200
+ }
201
+ }
202
+ suppressHighlighting={true}
203
+ >
204
+ #563B56
205
+ </Text>
206
+ <View
207
+ style={
208
+ {
209
+ "backgroundColor": "#563B56",
210
+ "height": 20,
211
+ "width": 20,
212
+ }
213
+ }
214
+ />
215
+ </View>
216
+ <View
217
+ style={
218
+ {
219
+ "backgroundColor": "#ffffff",
220
+ "borderBottomColor": "#A8A8A8",
221
+ "borderBottomWidth": 2,
222
+ "borderStyle": "solid",
223
+ "paddingBottom": 8,
224
+ "paddingLeft": 8,
225
+ "paddingRight": 8,
226
+ "paddingTop": 8,
227
+ }
228
+ }
229
+ >
230
+ <Text
231
+ style={
232
+ {
233
+ "fontFamily": "GTStandard",
234
+ }
235
+ }
236
+ suppressHighlighting={true}
237
+ >
238
+ deepPurple.9
239
+ </Text>
240
+ <Text
241
+ style={
242
+ {
243
+ "fontFamily": "GTStandard",
244
+ }
245
+ }
246
+ suppressHighlighting={true}
247
+ >
248
+ #452F45
249
+ </Text>
250
+ <View
251
+ style={
252
+ {
253
+ "backgroundColor": "#452F45",
254
+ "height": 20,
255
+ "width": 20,
256
+ }
257
+ }
258
+ />
259
+ </View>
260
+ <View
261
+ style={
262
+ {
263
+ "backgroundColor": "#ffffff",
264
+ "borderBottomColor": "#A8A8A8",
265
+ "borderBottomWidth": 2,
266
+ "borderStyle": "solid",
267
+ "paddingBottom": 8,
268
+ "paddingLeft": 8,
269
+ "paddingRight": 8,
270
+ "paddingTop": 8,
271
+ }
272
+ }
273
+ >
274
+ <Text
275
+ style={
276
+ {
277
+ "fontFamily": "GTStandard",
278
+ }
279
+ }
280
+ suppressHighlighting={true}
281
+ >
282
+ beige.1
283
+ </Text>
284
+ <Text
285
+ style={
286
+ {
287
+ "fontFamily": "GTStandard",
288
+ }
289
+ }
290
+ suppressHighlighting={true}
291
+ >
292
+ #F7F4EE
293
+ </Text>
294
+ <View
295
+ style={
296
+ {
297
+ "backgroundColor": "#F7F4EE",
298
+ "height": 20,
299
+ "width": 20,
300
+ }
301
+ }
302
+ />
303
+ </View>
304
+ <View
305
+ style={
306
+ {
307
+ "backgroundColor": "#ffffff",
308
+ "borderBottomColor": "#A8A8A8",
309
+ "borderBottomWidth": 2,
310
+ "borderStyle": "solid",
311
+ "paddingBottom": 8,
312
+ "paddingLeft": 8,
313
+ "paddingRight": 8,
314
+ "paddingTop": 8,
315
+ }
316
+ }
317
+ >
318
+ <Text
319
+ style={
320
+ {
321
+ "fontFamily": "GTStandard",
322
+ }
323
+ }
324
+ suppressHighlighting={true}
325
+ >
326
+ beige.2
327
+ </Text>
328
+ <Text
329
+ style={
330
+ {
331
+ "fontFamily": "GTStandard",
332
+ }
333
+ }
334
+ suppressHighlighting={true}
335
+ >
336
+ #F1ECE4
337
+ </Text>
338
+ <View
339
+ style={
340
+ {
341
+ "backgroundColor": "#F1ECE4",
342
+ "height": 20,
343
+ "width": 20,
344
+ }
345
+ }
346
+ />
347
+ </View>
348
+ <View
349
+ style={
350
+ {
351
+ "backgroundColor": "#ffffff",
352
+ "borderBottomColor": "#A8A8A8",
353
+ "borderBottomWidth": 2,
354
+ "borderStyle": "solid",
355
+ "paddingBottom": 8,
356
+ "paddingLeft": 8,
357
+ "paddingRight": 8,
358
+ "paddingTop": 8,
359
+ }
360
+ }
361
+ >
362
+ <Text
363
+ style={
364
+ {
365
+ "fontFamily": "GTStandard",
366
+ }
367
+ }
368
+ suppressHighlighting={true}
369
+ >
370
+ beige.3
371
+ </Text>
372
+ <Text
373
+ style={
374
+ {
375
+ "fontFamily": "GTStandard",
376
+ }
377
+ }
378
+ suppressHighlighting={true}
379
+ >
380
+ #EAE3D6
381
+ </Text>
382
+ <View
383
+ style={
384
+ {
385
+ "backgroundColor": "#EAE3D6",
386
+ "height": 20,
387
+ "width": 20,
388
+ }
389
+ }
390
+ />
391
+ </View>
392
+ <View
393
+ style={
394
+ {
395
+ "backgroundColor": "#ffffff",
396
+ "borderBottomColor": "#A8A8A8",
397
+ "borderBottomWidth": 2,
398
+ "borderStyle": "solid",
399
+ "paddingBottom": 8,
400
+ "paddingLeft": 8,
401
+ "paddingRight": 8,
402
+ "paddingTop": 8,
403
+ }
404
+ }
405
+ >
406
+ <Text
407
+ style={
408
+ {
409
+ "fontFamily": "GTStandard",
410
+ }
411
+ }
412
+ suppressHighlighting={true}
413
+ >
414
+ beige.4
415
+ </Text>
416
+ <Text
417
+ style={
418
+ {
419
+ "fontFamily": "GTStandard",
420
+ }
421
+ }
422
+ suppressHighlighting={true}
423
+ >
424
+ #E5DCCA
425
+ </Text>
426
+ <View
427
+ style={
428
+ {
429
+ "backgroundColor": "#E5DCCA",
430
+ "height": 20,
431
+ "width": 20,
432
+ }
433
+ }
434
+ />
435
+ </View>
436
+ <View
437
+ style={
438
+ {
439
+ "backgroundColor": "#ffffff",
440
+ "borderBottomColor": "#A8A8A8",
441
+ "borderBottomWidth": 2,
442
+ "borderStyle": "solid",
443
+ "paddingBottom": 8,
444
+ "paddingLeft": 8,
445
+ "paddingRight": 8,
446
+ "paddingTop": 8,
447
+ }
448
+ }
449
+ >
450
+ <Text
451
+ style={
452
+ {
453
+ "fontFamily": "GTStandard",
454
+ }
455
+ }
456
+ suppressHighlighting={true}
457
+ >
458
+ beige.5
459
+ </Text>
460
+ <Text
461
+ style={
462
+ {
463
+ "fontFamily": "GTStandard",
464
+ }
465
+ }
466
+ suppressHighlighting={true}
467
+ >
468
+ #DDD0B8
469
+ </Text>
470
+ <View
471
+ style={
472
+ {
473
+ "backgroundColor": "#DDD0B8",
474
+ "height": 20,
475
+ "width": 20,
476
+ }
477
+ }
478
+ />
479
+ </View>
480
+ <View
481
+ style={
482
+ {
483
+ "backgroundColor": "#ffffff",
484
+ "borderBottomColor": "#A8A8A8",
485
+ "borderBottomWidth": 2,
486
+ "borderStyle": "solid",
487
+ "paddingBottom": 8,
488
+ "paddingLeft": 8,
489
+ "paddingRight": 8,
490
+ "paddingTop": 8,
491
+ }
492
+ }
493
+ >
494
+ <Text
495
+ style={
496
+ {
497
+ "fontFamily": "GTStandard",
498
+ }
499
+ }
500
+ suppressHighlighting={true}
501
+ >
502
+ beige.6
503
+ </Text>
504
+ <Text
505
+ style={
506
+ {
507
+ "fontFamily": "GTStandard",
508
+ }
509
+ }
510
+ suppressHighlighting={true}
511
+ >
512
+ #C1B59F
513
+ </Text>
514
+ <View
515
+ style={
516
+ {
517
+ "backgroundColor": "#C1B59F",
518
+ "height": 20,
519
+ "width": 20,
520
+ }
521
+ }
522
+ />
523
+ </View>
524
+ <View
525
+ style={
526
+ {
527
+ "backgroundColor": "#ffffff",
528
+ "borderBottomColor": "#A8A8A8",
529
+ "borderBottomWidth": 2,
530
+ "borderStyle": "solid",
531
+ "paddingBottom": 8,
532
+ "paddingLeft": 8,
533
+ "paddingRight": 8,
534
+ "paddingTop": 8,
535
+ }
536
+ }
537
+ >
538
+ <Text
539
+ style={
540
+ {
541
+ "fontFamily": "GTStandard",
542
+ }
543
+ }
544
+ suppressHighlighting={true}
545
+ >
546
+ lightning.4
547
+ </Text>
548
+ <Text
549
+ style={
550
+ {
551
+ "fontFamily": "GTStandard",
552
+ }
553
+ }
554
+ suppressHighlighting={true}
555
+ >
556
+ #FFF966
557
+ </Text>
558
+ <View
559
+ style={
560
+ {
561
+ "backgroundColor": "#FFF966",
562
+ "height": 20,
563
+ "width": 20,
564
+ }
565
+ }
566
+ />
567
+ </View>
568
+ <View
569
+ style={
570
+ {
571
+ "backgroundColor": "#ffffff",
572
+ "borderBottomColor": "#A8A8A8",
573
+ "borderBottomWidth": 2,
574
+ "borderStyle": "solid",
575
+ "paddingBottom": 8,
576
+ "paddingLeft": 8,
577
+ "paddingRight": 8,
578
+ "paddingTop": 8,
579
+ }
580
+ }
581
+ >
582
+ <Text
583
+ style={
584
+ {
585
+ "fontFamily": "GTStandard",
586
+ }
587
+ }
588
+ suppressHighlighting={true}
589
+ >
590
+ lightning.5
591
+ </Text>
592
+ <Text
593
+ style={
594
+ {
595
+ "fontFamily": "GTStandard",
596
+ }
597
+ }
598
+ suppressHighlighting={true}
599
+ >
600
+ #FFF500
601
+ </Text>
602
+ <View
603
+ style={
604
+ {
605
+ "backgroundColor": "#FFF500",
606
+ "height": 20,
607
+ "width": 20,
608
+ }
609
+ }
610
+ />
611
+ </View>
612
+ <View
613
+ style={
614
+ {
615
+ "backgroundColor": "#ffffff",
616
+ "borderBottomColor": "#A8A8A8",
617
+ "borderBottomWidth": 2,
618
+ "borderStyle": "solid",
619
+ "paddingBottom": 8,
620
+ "paddingLeft": 8,
621
+ "paddingRight": 8,
622
+ "paddingTop": 8,
623
+ }
624
+ }
625
+ >
626
+ <Text
627
+ style={
628
+ {
629
+ "fontFamily": "GTStandard",
630
+ }
631
+ }
632
+ suppressHighlighting={true}
633
+ >
634
+ lightning.8
635
+ </Text>
636
+ <Text
637
+ style={
638
+ {
639
+ "fontFamily": "GTStandard",
640
+ }
641
+ }
642
+ suppressHighlighting={true}
643
+ >
644
+ #594D0D
645
+ </Text>
646
+ <View
647
+ style={
648
+ {
649
+ "backgroundColor": "#594D0D",
650
+ "height": 20,
651
+ "width": 20,
652
+ }
653
+ }
654
+ />
655
+ </View>
656
+ <View
657
+ style={
658
+ {
659
+ "backgroundColor": "#ffffff",
660
+ "borderBottomColor": "#A8A8A8",
661
+ "borderBottomWidth": 2,
662
+ "borderStyle": "solid",
663
+ "paddingBottom": 8,
664
+ "paddingLeft": 8,
665
+ "paddingRight": 8,
666
+ "paddingTop": 8,
667
+ }
668
+ }
669
+ >
670
+ <Text
671
+ style={
672
+ {
673
+ "fontFamily": "GTStandard",
674
+ }
675
+ }
676
+ suppressHighlighting={true}
677
+ >
678
+ lightning.9
679
+ </Text>
680
+ <Text
681
+ style={
682
+ {
683
+ "fontFamily": "GTStandard",
684
+ }
685
+ }
686
+ suppressHighlighting={true}
687
+ >
688
+ #43390A
689
+ </Text>
690
+ <View
691
+ style={
692
+ {
693
+ "backgroundColor": "#43390A",
694
+ "height": 20,
695
+ "width": 20,
696
+ }
697
+ }
698
+ />
699
+ </View>
700
+ <View
701
+ style={
702
+ {
703
+ "backgroundColor": "#ffffff",
704
+ "borderBottomColor": "#A8A8A8",
705
+ "borderBottomWidth": 2,
706
+ "borderStyle": "solid",
707
+ "paddingBottom": 8,
708
+ "paddingLeft": 8,
709
+ "paddingRight": 8,
710
+ "paddingTop": 8,
711
+ }
712
+ }
713
+ >
714
+ <Text
715
+ style={
716
+ {
717
+ "fontFamily": "GTStandard",
718
+ }
719
+ }
720
+ suppressHighlighting={true}
721
+ >
722
+ rainbow.pink
723
+ </Text>
724
+ <Text
725
+ style={
726
+ {
727
+ "fontFamily": "GTStandard",
728
+ }
729
+ }
730
+ suppressHighlighting={true}
731
+ >
732
+ #E4A4F9
733
+ </Text>
734
+ <View
735
+ style={
736
+ {
737
+ "backgroundColor": "#E4A4F9",
738
+ "height": 20,
739
+ "width": 20,
740
+ }
741
+ }
742
+ />
743
+ </View>
744
+ <View
745
+ style={
746
+ {
747
+ "backgroundColor": "#ffffff",
748
+ "borderBottomColor": "#A8A8A8",
749
+ "borderBottomWidth": 2,
750
+ "borderStyle": "solid",
751
+ "paddingBottom": 8,
752
+ "paddingLeft": 8,
753
+ "paddingRight": 8,
754
+ "paddingTop": 8,
755
+ }
756
+ }
757
+ >
758
+ <Text
759
+ style={
760
+ {
761
+ "fontFamily": "GTStandard",
762
+ }
763
+ }
764
+ suppressHighlighting={true}
765
+ >
766
+ rainbow.brick
767
+ </Text>
768
+ <Text
769
+ style={
770
+ {
771
+ "fontFamily": "GTStandard",
772
+ }
773
+ }
774
+ suppressHighlighting={true}
775
+ >
776
+ #951D12
777
+ </Text>
778
+ <View
779
+ style={
780
+ {
781
+ "backgroundColor": "#951D12",
782
+ "height": 20,
783
+ "width": 20,
784
+ }
785
+ }
786
+ />
787
+ </View>
788
+ <View
789
+ style={
790
+ {
791
+ "backgroundColor": "#ffffff",
792
+ "borderBottomColor": "#A8A8A8",
793
+ "borderBottomWidth": 2,
794
+ "borderStyle": "solid",
795
+ "paddingBottom": 8,
796
+ "paddingLeft": 8,
797
+ "paddingRight": 8,
798
+ "paddingTop": 8,
799
+ }
800
+ }
801
+ >
802
+ <Text
803
+ style={
804
+ {
805
+ "fontFamily": "GTStandard",
806
+ }
807
+ }
808
+ suppressHighlighting={true}
809
+ >
810
+ rainbow.orange
811
+ </Text>
812
+ <Text
813
+ style={
814
+ {
815
+ "fontFamily": "GTStandard",
816
+ }
817
+ }
818
+ suppressHighlighting={true}
819
+ >
820
+ #DB6E2E
821
+ </Text>
822
+ <View
823
+ style={
824
+ {
825
+ "backgroundColor": "#DB6E2E",
826
+ "height": 20,
827
+ "width": 20,
828
+ }
829
+ }
830
+ />
831
+ </View>
832
+ <View
833
+ style={
834
+ {
835
+ "backgroundColor": "#ffffff",
836
+ "borderBottomColor": "#A8A8A8",
837
+ "borderBottomWidth": 2,
838
+ "borderStyle": "solid",
839
+ "paddingBottom": 8,
840
+ "paddingLeft": 8,
841
+ "paddingRight": 8,
842
+ "paddingTop": 8,
843
+ }
844
+ }
845
+ >
846
+ <Text
847
+ style={
848
+ {
849
+ "fontFamily": "GTStandard",
850
+ }
851
+ }
852
+ suppressHighlighting={true}
853
+ >
854
+ rainbow.gold
855
+ </Text>
856
+ <Text
857
+ style={
858
+ {
859
+ "fontFamily": "GTStandard",
860
+ }
861
+ }
862
+ suppressHighlighting={true}
863
+ >
864
+ #9A7600
865
+ </Text>
866
+ <View
867
+ style={
868
+ {
869
+ "backgroundColor": "#9A7600",
870
+ "height": 20,
871
+ "width": 20,
872
+ }
873
+ }
874
+ />
875
+ </View>
876
+ <View
877
+ style={
878
+ {
879
+ "backgroundColor": "#ffffff",
880
+ "borderBottomColor": "#A8A8A8",
881
+ "borderBottomWidth": 2,
882
+ "borderStyle": "solid",
883
+ "paddingBottom": 8,
884
+ "paddingLeft": 8,
885
+ "paddingRight": 8,
886
+ "paddingTop": 8,
887
+ }
888
+ }
889
+ >
890
+ <Text
891
+ style={
892
+ {
893
+ "fontFamily": "GTStandard",
894
+ }
895
+ }
896
+ suppressHighlighting={true}
897
+ >
898
+ rainbow.sun
899
+ </Text>
900
+ <Text
901
+ style={
902
+ {
903
+ "fontFamily": "GTStandard",
904
+ }
905
+ }
906
+ suppressHighlighting={true}
907
+ >
908
+ #EFD346
909
+ </Text>
910
+ <View
911
+ style={
912
+ {
913
+ "backgroundColor": "#EFD346",
914
+ "height": 20,
915
+ "width": 20,
916
+ }
917
+ }
918
+ />
919
+ </View>
920
+ <View
921
+ style={
922
+ {
923
+ "backgroundColor": "#ffffff",
924
+ "borderBottomColor": "#A8A8A8",
925
+ "borderBottomWidth": 2,
926
+ "borderStyle": "solid",
927
+ "paddingBottom": 8,
928
+ "paddingLeft": 8,
929
+ "paddingRight": 8,
930
+ "paddingTop": 8,
931
+ }
932
+ }
933
+ >
934
+ <Text
935
+ style={
936
+ {
937
+ "fontFamily": "GTStandard",
938
+ }
939
+ }
940
+ suppressHighlighting={true}
941
+ >
942
+ rainbow.green-pine
943
+ </Text>
944
+ <Text
945
+ style={
946
+ {
947
+ "fontFamily": "GTStandard",
948
+ }
949
+ }
950
+ suppressHighlighting={true}
951
+ >
952
+ #1C5D47
953
+ </Text>
954
+ <View
955
+ style={
956
+ {
957
+ "backgroundColor": "#1C5D47",
958
+ "height": 20,
959
+ "width": 20,
960
+ }
961
+ }
962
+ />
963
+ </View>
964
+ <View
965
+ style={
966
+ {
967
+ "backgroundColor": "#ffffff",
968
+ "borderBottomColor": "#A8A8A8",
969
+ "borderBottomWidth": 2,
970
+ "borderStyle": "solid",
971
+ "paddingBottom": 8,
972
+ "paddingLeft": 8,
973
+ "paddingRight": 8,
974
+ "paddingTop": 8,
975
+ }
976
+ }
977
+ >
978
+ <Text
979
+ style={
980
+ {
981
+ "fontFamily": "GTStandard",
982
+ }
983
+ }
984
+ suppressHighlighting={true}
985
+ >
986
+ rainbow.green-grass
987
+ </Text>
988
+ <Text
989
+ style={
990
+ {
991
+ "fontFamily": "GTStandard",
992
+ }
993
+ }
994
+ suppressHighlighting={true}
995
+ >
996
+ #4DA00A
997
+ </Text>
998
+ <View
999
+ style={
1000
+ {
1001
+ "backgroundColor": "#4DA00A",
1002
+ "height": 20,
1003
+ "width": 20,
1004
+ }
1005
+ }
1006
+ />
1007
+ </View>
1008
+ <View
1009
+ style={
1010
+ {
1011
+ "backgroundColor": "#ffffff",
1012
+ "borderBottomColor": "#A8A8A8",
1013
+ "borderBottomWidth": 2,
1014
+ "borderStyle": "solid",
1015
+ "paddingBottom": 8,
1016
+ "paddingLeft": 8,
1017
+ "paddingRight": 8,
1018
+ "paddingTop": 8,
1019
+ }
1020
+ }
1021
+ >
1022
+ <Text
1023
+ style={
1024
+ {
1025
+ "fontFamily": "GTStandard",
1026
+ }
1027
+ }
1028
+ suppressHighlighting={true}
1029
+ >
1030
+ rainbow.green-apple
1031
+ </Text>
1032
+ <Text
1033
+ style={
1034
+ {
1035
+ "fontFamily": "GTStandard",
1036
+ }
1037
+ }
1038
+ suppressHighlighting={true}
1039
+ >
1040
+ #DEF985
1041
+ </Text>
1042
+ <View
1043
+ style={
1044
+ {
1045
+ "backgroundColor": "#DEF985",
1046
+ "height": 20,
1047
+ "width": 20,
1048
+ }
1049
+ }
1050
+ />
1051
+ </View>
1052
+ <View
1053
+ style={
1054
+ {
1055
+ "backgroundColor": "#ffffff",
1056
+ "borderBottomColor": "#A8A8A8",
1057
+ "borderBottomWidth": 2,
1058
+ "borderStyle": "solid",
1059
+ "paddingBottom": 8,
1060
+ "paddingLeft": 8,
1061
+ "paddingRight": 8,
1062
+ "paddingTop": 8,
1063
+ }
1064
+ }
1065
+ >
1066
+ <Text
1067
+ style={
1068
+ {
1069
+ "fontFamily": "GTStandard",
1070
+ }
1071
+ }
1072
+ suppressHighlighting={true}
1073
+ >
1074
+ rainbow.blue-electric
1075
+ </Text>
1076
+ <Text
1077
+ style={
1078
+ {
1079
+ "fontFamily": "GTStandard",
1080
+ }
1081
+ }
1082
+ suppressHighlighting={true}
1083
+ >
1084
+ #2850C4
1085
+ </Text>
1086
+ <View
1087
+ style={
1088
+ {
1089
+ "backgroundColor": "#2850C4",
1090
+ "height": 20,
1091
+ "width": 20,
1092
+ }
1093
+ }
1094
+ />
1095
+ </View>
1096
+ <View
1097
+ style={
1098
+ {
1099
+ "backgroundColor": "#ffffff",
1100
+ "borderBottomColor": "#A8A8A8",
1101
+ "borderBottomWidth": 2,
1102
+ "borderStyle": "solid",
1103
+ "paddingBottom": 8,
1104
+ "paddingLeft": 8,
1105
+ "paddingRight": 8,
1106
+ "paddingTop": 8,
1107
+ }
1108
+ }
1109
+ >
1110
+ <Text
1111
+ style={
1112
+ {
1113
+ "fontFamily": "GTStandard",
1114
+ }
1115
+ }
1116
+ suppressHighlighting={true}
1117
+ >
1118
+ rainbow.blue-sky
1119
+ </Text>
1120
+ <Text
1121
+ style={
1122
+ {
1123
+ "fontFamily": "GTStandard",
1124
+ }
1125
+ }
1126
+ suppressHighlighting={true}
1127
+ >
1128
+ #B2F0FD
1129
+ </Text>
1130
+ <View
1131
+ style={
1132
+ {
1133
+ "backgroundColor": "#B2F0FD",
1134
+ "height": 20,
1135
+ "width": 20,
1136
+ }
1137
+ }
1138
+ />
1139
+ </View>
1140
+ <View
1141
+ style={
1142
+ {
1143
+ "backgroundColor": "#ffffff",
1144
+ "borderBottomColor": "#A8A8A8",
1145
+ "borderBottomWidth": 2,
1146
+ "borderStyle": "solid",
1147
+ "paddingBottom": 8,
1148
+ "paddingLeft": 8,
1149
+ "paddingRight": 8,
1150
+ "paddingTop": 8,
1151
+ }
1152
+ }
1153
+ >
1154
+ <Text
1155
+ style={
1156
+ {
1157
+ "fontFamily": "GTStandard",
1158
+ }
1159
+ }
1160
+ suppressHighlighting={true}
1161
+ >
1162
+ grey.0
1163
+ </Text>
1164
+ <Text
1165
+ style={
1166
+ {
1167
+ "fontFamily": "GTStandard",
1168
+ }
1169
+ }
1170
+ suppressHighlighting={true}
1171
+ >
1172
+ #ffffff
1173
+ </Text>
1174
+ <View
1175
+ style={
1176
+ {
1177
+ "backgroundColor": "#ffffff",
1178
+ "height": 20,
1179
+ "width": 20,
1180
+ }
1181
+ }
1182
+ />
1183
+ </View>
1184
+ <View
1185
+ style={
1186
+ {
1187
+ "backgroundColor": "#ffffff",
1188
+ "borderBottomColor": "#A8A8A8",
1189
+ "borderBottomWidth": 2,
1190
+ "borderStyle": "solid",
1191
+ "paddingBottom": 8,
1192
+ "paddingLeft": 8,
1193
+ "paddingRight": 8,
1194
+ "paddingTop": 8,
1195
+ }
1196
+ }
1197
+ >
1198
+ <Text
1199
+ style={
1200
+ {
1201
+ "fontFamily": "GTStandard",
1202
+ }
1203
+ }
1204
+ suppressHighlighting={true}
1205
+ >
1206
+ grey.1
1207
+ </Text>
1208
+ <Text
1209
+ style={
1210
+ {
1211
+ "fontFamily": "GTStandard",
1212
+ }
1213
+ }
1214
+ suppressHighlighting={true}
1215
+ >
1216
+ #ECECEC
1217
+ </Text>
1218
+ <View
1219
+ style={
1220
+ {
1221
+ "backgroundColor": "#ECECEC",
1222
+ "height": 20,
1223
+ "width": 20,
1224
+ }
1225
+ }
1226
+ />
1227
+ </View>
1228
+ <View
1229
+ style={
1230
+ {
1231
+ "backgroundColor": "#ffffff",
1232
+ "borderBottomColor": "#A8A8A8",
1233
+ "borderBottomWidth": 2,
1234
+ "borderStyle": "solid",
1235
+ "paddingBottom": 8,
1236
+ "paddingLeft": 8,
1237
+ "paddingRight": 8,
1238
+ "paddingTop": 8,
1239
+ }
1240
+ }
1241
+ >
1242
+ <Text
1243
+ style={
1244
+ {
1245
+ "fontFamily": "GTStandard",
1246
+ }
1247
+ }
1248
+ suppressHighlighting={true}
1249
+ >
1250
+ grey.2
1251
+ </Text>
1252
+ <Text
1253
+ style={
1254
+ {
1255
+ "fontFamily": "GTStandard",
1256
+ }
1257
+ }
1258
+ suppressHighlighting={true}
1259
+ >
1260
+ #CDCED0
1261
+ </Text>
1262
+ <View
1263
+ style={
1264
+ {
1265
+ "backgroundColor": "#CDCED0",
1266
+ "height": 20,
1267
+ "width": 20,
1268
+ }
1269
+ }
1270
+ />
1271
+ </View>
1272
+ <View
1273
+ style={
1274
+ {
1275
+ "backgroundColor": "#ffffff",
1276
+ "borderBottomColor": "#A8A8A8",
1277
+ "borderBottomWidth": 2,
1278
+ "borderStyle": "solid",
1279
+ "paddingBottom": 8,
1280
+ "paddingLeft": 8,
1281
+ "paddingRight": 8,
1282
+ "paddingTop": 8,
1283
+ }
1284
+ }
1285
+ >
1286
+ <Text
1287
+ style={
1288
+ {
1289
+ "fontFamily": "GTStandard",
1290
+ }
1291
+ }
1292
+ suppressHighlighting={true}
1293
+ >
1294
+ grey.3
1295
+ </Text>
1296
+ <Text
1297
+ style={
1298
+ {
1299
+ "fontFamily": "GTStandard",
1300
+ }
1301
+ }
1302
+ suppressHighlighting={true}
1303
+ >
1304
+ #A8A8A8
1305
+ </Text>
1306
+ <View
1307
+ style={
1308
+ {
1309
+ "backgroundColor": "#A8A8A8",
1310
+ "height": 20,
1311
+ "width": 20,
1312
+ }
1313
+ }
1314
+ />
1315
+ </View>
1316
+ <View
1317
+ style={
1318
+ {
1319
+ "backgroundColor": "#ffffff",
1320
+ "borderBottomColor": "#A8A8A8",
1321
+ "borderBottomWidth": 2,
1322
+ "borderStyle": "solid",
1323
+ "paddingBottom": 8,
1324
+ "paddingLeft": 8,
1325
+ "paddingRight": 8,
1326
+ "paddingTop": 8,
1327
+ }
1328
+ }
1329
+ >
1330
+ <Text
1331
+ style={
1332
+ {
1333
+ "fontFamily": "GTStandard",
1334
+ }
1335
+ }
1336
+ suppressHighlighting={true}
1337
+ >
1338
+ grey.5
1339
+ </Text>
1340
+ <Text
1341
+ style={
1342
+ {
1343
+ "fontFamily": "GTStandard",
1344
+ }
1345
+ }
1346
+ suppressHighlighting={true}
1347
+ >
1348
+ #838383
1349
+ </Text>
1350
+ <View
1351
+ style={
1352
+ {
1353
+ "backgroundColor": "#838383",
1354
+ "height": 20,
1355
+ "width": 20,
1356
+ }
1357
+ }
1358
+ />
1359
+ </View>
1360
+ <View
1361
+ style={
1362
+ {
1363
+ "backgroundColor": "#ffffff",
1364
+ "borderBottomColor": "#A8A8A8",
1365
+ "borderBottomWidth": 2,
1366
+ "borderStyle": "solid",
1367
+ "paddingBottom": 8,
1368
+ "paddingLeft": 8,
1369
+ "paddingRight": 8,
1370
+ "paddingTop": 8,
1371
+ }
1372
+ }
1373
+ >
1374
+ <Text
1375
+ style={
1376
+ {
1377
+ "fontFamily": "GTStandard",
1378
+ }
1379
+ }
1380
+ suppressHighlighting={true}
1381
+ >
1382
+ grey.7
1383
+ </Text>
1384
+ <Text
1385
+ style={
1386
+ {
1387
+ "fontFamily": "GTStandard",
1388
+ }
1389
+ }
1390
+ suppressHighlighting={true}
1391
+ >
1392
+ #505050
1393
+ </Text>
1394
+ <View
1395
+ style={
1396
+ {
1397
+ "backgroundColor": "#505050",
1398
+ "height": 20,
1399
+ "width": 20,
1400
+ }
1401
+ }
1402
+ />
1403
+ </View>
1404
+ <View
1405
+ style={
1406
+ {
1407
+ "backgroundColor": "#ffffff",
1408
+ "borderBottomColor": "#A8A8A8",
1409
+ "borderBottomWidth": 2,
1410
+ "borderStyle": "solid",
1411
+ "paddingBottom": 8,
1412
+ "paddingLeft": 8,
1413
+ "paddingRight": 8,
1414
+ "paddingTop": 8,
1415
+ }
1416
+ }
1417
+ >
1418
+ <Text
1419
+ style={
1420
+ {
1421
+ "fontFamily": "GTStandard",
1422
+ }
1423
+ }
1424
+ suppressHighlighting={true}
1425
+ >
1426
+ grey.9
1427
+ </Text>
1428
+ <Text
1429
+ style={
1430
+ {
1431
+ "fontFamily": "GTStandard",
1432
+ }
1433
+ }
1434
+ suppressHighlighting={true}
1435
+ >
1436
+ #101010
1437
+ </Text>
1438
+ <View
1439
+ style={
1440
+ {
1441
+ "backgroundColor": "#101010",
1442
+ "height": 20,
1443
+ "width": 20,
1444
+ }
1445
+ }
1446
+ />
1447
+ </View>
1448
+ <View
1449
+ style={
1450
+ {
1451
+ "backgroundColor": "#ffffff",
1452
+ "borderBottomColor": "#A8A8A8",
1453
+ "borderBottomWidth": 2,
1454
+ "borderStyle": "solid",
1455
+ "paddingBottom": 8,
1456
+ "paddingLeft": 8,
1457
+ "paddingRight": 8,
1458
+ "paddingTop": 8,
1459
+ }
1460
+ }
1461
+ >
1462
+ <Text
1463
+ style={
1464
+ {
1465
+ "fontFamily": "GTStandard",
1466
+ }
1467
+ }
1468
+ suppressHighlighting={true}
1469
+ >
1470
+ blue.1
1471
+ </Text>
1472
+ <Text
1473
+ style={
1474
+ {
1475
+ "fontFamily": "GTStandard",
1476
+ }
1477
+ }
1478
+ suppressHighlighting={true}
1479
+ >
1480
+ #E9F4FC
1481
+ </Text>
1482
+ <View
1483
+ style={
1484
+ {
1485
+ "backgroundColor": "#E9F4FC",
1486
+ "height": 20,
1487
+ "width": 20,
1488
+ }
1489
+ }
1490
+ />
1491
+ </View>
1492
+ <View
1493
+ style={
1494
+ {
1495
+ "backgroundColor": "#ffffff",
1496
+ "borderBottomColor": "#A8A8A8",
1497
+ "borderBottomWidth": 2,
1498
+ "borderStyle": "solid",
1499
+ "paddingBottom": 8,
1500
+ "paddingLeft": 8,
1501
+ "paddingRight": 8,
1502
+ "paddingTop": 8,
1503
+ }
1504
+ }
1505
+ >
1506
+ <Text
1507
+ style={
1508
+ {
1509
+ "fontFamily": "GTStandard",
1510
+ }
1511
+ }
1512
+ suppressHighlighting={true}
1513
+ >
1514
+ blue.2
1515
+ </Text>
1516
+ <Text
1517
+ style={
1518
+ {
1519
+ "fontFamily": "GTStandard",
1520
+ }
1521
+ }
1522
+ suppressHighlighting={true}
1523
+ >
1524
+ #BCDFF6
1525
+ </Text>
1526
+ <View
1527
+ style={
1528
+ {
1529
+ "backgroundColor": "#BCDFF6",
1530
+ "height": 20,
1531
+ "width": 20,
1532
+ }
1533
+ }
1534
+ />
1535
+ </View>
1536
+ <View
1537
+ style={
1538
+ {
1539
+ "backgroundColor": "#ffffff",
1540
+ "borderBottomColor": "#A8A8A8",
1541
+ "borderBottomWidth": 2,
1542
+ "borderStyle": "solid",
1543
+ "paddingBottom": 8,
1544
+ "paddingLeft": 8,
1545
+ "paddingRight": 8,
1546
+ "paddingTop": 8,
1547
+ }
1548
+ }
1549
+ >
1550
+ <Text
1551
+ style={
1552
+ {
1553
+ "fontFamily": "GTStandard",
1554
+ }
1555
+ }
1556
+ suppressHighlighting={true}
1557
+ >
1558
+ blue.6
1559
+ </Text>
1560
+ <Text
1561
+ style={
1562
+ {
1563
+ "fontFamily": "GTStandard",
1564
+ }
1565
+ }
1566
+ suppressHighlighting={true}
1567
+ >
1568
+ #1772AB
1569
+ </Text>
1570
+ <View
1571
+ style={
1572
+ {
1573
+ "backgroundColor": "#1772AB",
1574
+ "height": 20,
1575
+ "width": 20,
1576
+ }
1577
+ }
1578
+ />
1579
+ </View>
1580
+ <View
1581
+ style={
1582
+ {
1583
+ "backgroundColor": "#ffffff",
1584
+ "borderBottomColor": "#A8A8A8",
1585
+ "borderBottomWidth": 2,
1586
+ "borderStyle": "solid",
1587
+ "paddingBottom": 8,
1588
+ "paddingLeft": 8,
1589
+ "paddingRight": 8,
1590
+ "paddingTop": 8,
1591
+ }
1592
+ }
1593
+ >
1594
+ <Text
1595
+ style={
1596
+ {
1597
+ "fontFamily": "GTStandard",
1598
+ }
1599
+ }
1600
+ suppressHighlighting={true}
1601
+ >
1602
+ blue.7
1603
+ </Text>
1604
+ <Text
1605
+ style={
1606
+ {
1607
+ "fontFamily": "GTStandard",
1608
+ }
1609
+ }
1610
+ suppressHighlighting={true}
1611
+ >
1612
+ #125A87
1613
+ </Text>
1614
+ <View
1615
+ style={
1616
+ {
1617
+ "backgroundColor": "#125A87",
1618
+ "height": 20,
1619
+ "width": 20,
1620
+ }
1621
+ }
1622
+ />
1623
+ </View>
1624
+ <View
1625
+ style={
1626
+ {
1627
+ "backgroundColor": "#ffffff",
1628
+ "borderBottomColor": "#A8A8A8",
1629
+ "borderBottomWidth": 2,
1630
+ "borderStyle": "solid",
1631
+ "paddingBottom": 8,
1632
+ "paddingLeft": 8,
1633
+ "paddingRight": 8,
1634
+ "paddingTop": 8,
1635
+ }
1636
+ }
1637
+ >
1638
+ <Text
1639
+ style={
1640
+ {
1641
+ "fontFamily": "GTStandard",
1642
+ }
1643
+ }
1644
+ suppressHighlighting={true}
1645
+ >
1646
+ green.1
1647
+ </Text>
1648
+ <Text
1649
+ style={
1650
+ {
1651
+ "fontFamily": "GTStandard",
1652
+ }
1653
+ }
1654
+ suppressHighlighting={true}
1655
+ >
1656
+ #ECFEDD
1657
+ </Text>
1658
+ <View
1659
+ style={
1660
+ {
1661
+ "backgroundColor": "#ECFEDD",
1662
+ "height": 20,
1663
+ "width": 20,
1664
+ }
1665
+ }
1666
+ />
1667
+ </View>
1668
+ <View
1669
+ style={
1670
+ {
1671
+ "backgroundColor": "#ffffff",
1672
+ "borderBottomColor": "#A8A8A8",
1673
+ "borderBottomWidth": 2,
1674
+ "borderStyle": "solid",
1675
+ "paddingBottom": 8,
1676
+ "paddingLeft": 8,
1677
+ "paddingRight": 8,
1678
+ "paddingTop": 8,
1679
+ }
1680
+ }
1681
+ >
1682
+ <Text
1683
+ style={
1684
+ {
1685
+ "fontFamily": "GTStandard",
1686
+ }
1687
+ }
1688
+ suppressHighlighting={true}
1689
+ >
1690
+ green.2
1691
+ </Text>
1692
+ <Text
1693
+ style={
1694
+ {
1695
+ "fontFamily": "GTStandard",
1696
+ }
1697
+ }
1698
+ suppressHighlighting={true}
1699
+ >
1700
+ #DBFAC1
1701
+ </Text>
1702
+ <View
1703
+ style={
1704
+ {
1705
+ "backgroundColor": "#DBFAC1",
1706
+ "height": 20,
1707
+ "width": 20,
1708
+ }
1709
+ }
1710
+ />
1711
+ </View>
1712
+ <View
1713
+ style={
1714
+ {
1715
+ "backgroundColor": "#ffffff",
1716
+ "borderBottomColor": "#A8A8A8",
1717
+ "borderBottomWidth": 2,
1718
+ "borderStyle": "solid",
1719
+ "paddingBottom": 8,
1720
+ "paddingLeft": 8,
1721
+ "paddingRight": 8,
1722
+ "paddingTop": 8,
1723
+ }
1724
+ }
1725
+ >
1726
+ <Text
1727
+ style={
1728
+ {
1729
+ "fontFamily": "GTStandard",
1730
+ }
1731
+ }
1732
+ suppressHighlighting={true}
1733
+ >
1734
+ green.6
1735
+ </Text>
1736
+ <Text
1737
+ style={
1738
+ {
1739
+ "fontFamily": "GTStandard",
1740
+ }
1741
+ }
1742
+ suppressHighlighting={true}
1743
+ >
1744
+ #438D06
1745
+ </Text>
1746
+ <View
1747
+ style={
1748
+ {
1749
+ "backgroundColor": "#438D06",
1750
+ "height": 20,
1751
+ "width": 20,
1752
+ }
1753
+ }
1754
+ />
1755
+ </View>
1756
+ <View
1757
+ style={
1758
+ {
1759
+ "backgroundColor": "#ffffff",
1760
+ "borderBottomColor": "#A8A8A8",
1761
+ "borderBottomWidth": 2,
1762
+ "borderStyle": "solid",
1763
+ "paddingBottom": 8,
1764
+ "paddingLeft": 8,
1765
+ "paddingRight": 8,
1766
+ "paddingTop": 8,
1767
+ }
1768
+ }
1769
+ >
1770
+ <Text
1771
+ style={
1772
+ {
1773
+ "fontFamily": "GTStandard",
1774
+ }
1775
+ }
1776
+ suppressHighlighting={true}
1777
+ >
1778
+ green.7
1779
+ </Text>
1780
+ <Text
1781
+ style={
1782
+ {
1783
+ "fontFamily": "GTStandard",
1784
+ }
1785
+ }
1786
+ suppressHighlighting={true}
1787
+ >
1788
+ #357105
1789
+ </Text>
1790
+ <View
1791
+ style={
1792
+ {
1793
+ "backgroundColor": "#357105",
1794
+ "height": 20,
1795
+ "width": 20,
1796
+ }
1797
+ }
1798
+ />
1799
+ </View>
1800
+ <View
1801
+ style={
1802
+ {
1803
+ "backgroundColor": "#ffffff",
1804
+ "borderBottomColor": "#A8A8A8",
1805
+ "borderBottomWidth": 2,
1806
+ "borderStyle": "solid",
1807
+ "paddingBottom": 8,
1808
+ "paddingLeft": 8,
1809
+ "paddingRight": 8,
1810
+ "paddingTop": 8,
1811
+ }
1812
+ }
1813
+ >
1814
+ <Text
1815
+ style={
1816
+ {
1817
+ "fontFamily": "GTStandard",
1818
+ }
1819
+ }
1820
+ suppressHighlighting={true}
1821
+ >
1822
+ yellow.1
1823
+ </Text>
1824
+ <Text
1825
+ style={
1826
+ {
1827
+ "fontFamily": "GTStandard",
1828
+ }
1829
+ }
1830
+ suppressHighlighting={true}
1831
+ >
1832
+ #FDF8E7
1833
+ </Text>
1834
+ <View
1835
+ style={
1836
+ {
1837
+ "backgroundColor": "#FDF8E7",
1838
+ "height": 20,
1839
+ "width": 20,
1840
+ }
1841
+ }
1842
+ />
1843
+ </View>
1844
+ <View
1845
+ style={
1846
+ {
1847
+ "backgroundColor": "#ffffff",
1848
+ "borderBottomColor": "#A8A8A8",
1849
+ "borderBottomWidth": 2,
1850
+ "borderStyle": "solid",
1851
+ "paddingBottom": 8,
1852
+ "paddingLeft": 8,
1853
+ "paddingRight": 8,
1854
+ "paddingTop": 8,
1855
+ }
1856
+ }
1857
+ >
1858
+ <Text
1859
+ style={
1860
+ {
1861
+ "fontFamily": "GTStandard",
1862
+ }
1863
+ }
1864
+ suppressHighlighting={true}
1865
+ >
1866
+ yellow.2
1867
+ </Text>
1868
+ <Text
1869
+ style={
1870
+ {
1871
+ "fontFamily": "GTStandard",
1872
+ }
1873
+ }
1874
+ suppressHighlighting={true}
1875
+ >
1876
+ #FAEBB8
1877
+ </Text>
1878
+ <View
1879
+ style={
1880
+ {
1881
+ "backgroundColor": "#FAEBB8",
1882
+ "height": 20,
1883
+ "width": 20,
1884
+ }
1885
+ }
1886
+ />
1887
+ </View>
1888
+ <View
1889
+ style={
1890
+ {
1891
+ "backgroundColor": "#ffffff",
1892
+ "borderBottomColor": "#A8A8A8",
1893
+ "borderBottomWidth": 2,
1894
+ "borderStyle": "solid",
1895
+ "paddingBottom": 8,
1896
+ "paddingLeft": 8,
1897
+ "paddingRight": 8,
1898
+ "paddingTop": 8,
1899
+ }
1900
+ }
1901
+ >
1902
+ <Text
1903
+ style={
1904
+ {
1905
+ "fontFamily": "GTStandard",
1906
+ }
1907
+ }
1908
+ suppressHighlighting={true}
1909
+ >
1910
+ yellow.6
1911
+ </Text>
1912
+ <Text
1913
+ style={
1914
+ {
1915
+ "fontFamily": "GTStandard",
1916
+ }
1917
+ }
1918
+ suppressHighlighting={true}
1919
+ >
1920
+ #EFC11F
1921
+ </Text>
1922
+ <View
1923
+ style={
1924
+ {
1925
+ "backgroundColor": "#EFC11F",
1926
+ "height": 20,
1927
+ "width": 20,
1928
+ }
1929
+ }
1930
+ />
1931
+ </View>
1932
+ <View
1933
+ style={
1934
+ {
1935
+ "backgroundColor": "#ffffff",
1936
+ "borderBottomColor": "#A8A8A8",
1937
+ "borderBottomWidth": 2,
1938
+ "borderStyle": "solid",
1939
+ "paddingBottom": 8,
1940
+ "paddingLeft": 8,
1941
+ "paddingRight": 8,
1942
+ "paddingTop": 8,
1943
+ }
1944
+ }
1945
+ >
1946
+ <Text
1947
+ style={
1948
+ {
1949
+ "fontFamily": "GTStandard",
1950
+ }
1951
+ }
1952
+ suppressHighlighting={true}
1953
+ >
1954
+ yellow.7
1955
+ </Text>
1956
+ <Text
1957
+ style={
1958
+ {
1959
+ "fontFamily": "GTStandard",
1960
+ }
1961
+ }
1962
+ suppressHighlighting={true}
1963
+ >
1964
+ #BA930B
1965
+ </Text>
1966
+ <View
1967
+ style={
1968
+ {
1969
+ "backgroundColor": "#BA930B",
1970
+ "height": 20,
1971
+ "width": 20,
1972
+ }
1973
+ }
1974
+ />
1975
+ </View>
1976
+ <View
1977
+ style={
1978
+ {
1979
+ "backgroundColor": "#ffffff",
1980
+ "borderBottomColor": "#A8A8A8",
1981
+ "borderBottomWidth": 2,
1982
+ "borderStyle": "solid",
1983
+ "paddingBottom": 8,
1984
+ "paddingLeft": 8,
1985
+ "paddingRight": 8,
1986
+ "paddingTop": 8,
1987
+ }
1988
+ }
1989
+ >
1990
+ <Text
1991
+ style={
1992
+ {
1993
+ "fontFamily": "GTStandard",
1994
+ }
1995
+ }
1996
+ suppressHighlighting={true}
1997
+ >
1998
+ red.1
1999
+ </Text>
2000
+ <Text
2001
+ style={
2002
+ {
2003
+ "fontFamily": "GTStandard",
2004
+ }
2005
+ }
2006
+ suppressHighlighting={true}
2007
+ >
2008
+ #FDE4E3
2009
+ </Text>
2010
+ <View
2011
+ style={
2012
+ {
2013
+ "backgroundColor": "#FDE4E3",
2014
+ "height": 20,
2015
+ "width": 20,
2016
+ }
2017
+ }
2018
+ />
2019
+ </View>
2020
+ <View
2021
+ style={
2022
+ {
2023
+ "backgroundColor": "#ffffff",
2024
+ "borderBottomColor": "#A8A8A8",
2025
+ "borderBottomWidth": 2,
2026
+ "borderStyle": "solid",
2027
+ "paddingBottom": 8,
2028
+ "paddingLeft": 8,
2029
+ "paddingRight": 8,
2030
+ "paddingTop": 8,
2031
+ }
2032
+ }
2033
+ >
2034
+ <Text
2035
+ style={
2036
+ {
2037
+ "fontFamily": "GTStandard",
2038
+ }
2039
+ }
2040
+ suppressHighlighting={true}
2041
+ >
2042
+ red.2
2043
+ </Text>
2044
+ <Text
2045
+ style={
2046
+ {
2047
+ "fontFamily": "GTStandard",
2048
+ }
2049
+ }
2050
+ suppressHighlighting={true}
2051
+ >
2052
+ #FAB8B8
2053
+ </Text>
2054
+ <View
2055
+ style={
2056
+ {
2057
+ "backgroundColor": "#FAB8B8",
2058
+ "height": 20,
2059
+ "width": 20,
2060
+ }
2061
+ }
2062
+ />
2063
+ </View>
2064
+ <View
2065
+ style={
2066
+ {
2067
+ "backgroundColor": "#ffffff",
2068
+ "borderBottomColor": "#A8A8A8",
2069
+ "borderBottomWidth": 2,
2070
+ "borderStyle": "solid",
2071
+ "paddingBottom": 8,
2072
+ "paddingLeft": 8,
2073
+ "paddingRight": 8,
2074
+ "paddingTop": 8,
2075
+ }
2076
+ }
2077
+ >
2078
+ <Text
2079
+ style={
2080
+ {
2081
+ "fontFamily": "GTStandard",
2082
+ }
2083
+ }
2084
+ suppressHighlighting={true}
2085
+ >
2086
+ red.6
2087
+ </Text>
2088
+ <Text
2089
+ style={
2090
+ {
2091
+ "fontFamily": "GTStandard",
2092
+ }
2093
+ }
2094
+ suppressHighlighting={true}
2095
+ >
2096
+ #F14847
2097
+ </Text>
2098
+ <View
2099
+ style={
2100
+ {
2101
+ "backgroundColor": "#F14847",
2102
+ "height": 20,
2103
+ "width": 20,
2104
+ }
2105
+ }
2106
+ />
2107
+ </View>
2108
+ <View
2109
+ style={
2110
+ {
2111
+ "backgroundColor": "#ffffff",
2112
+ "borderBottomColor": "#A8A8A8",
2113
+ "borderBottomWidth": 2,
2114
+ "borderStyle": "solid",
2115
+ "paddingBottom": 8,
2116
+ "paddingLeft": 8,
2117
+ "paddingRight": 8,
2118
+ "paddingTop": 8,
2119
+ }
2120
+ }
2121
+ >
2122
+ <Text
2123
+ style={
2124
+ {
2125
+ "fontFamily": "GTStandard",
2126
+ }
2127
+ }
2128
+ suppressHighlighting={true}
2129
+ >
2130
+ red.7
2131
+ </Text>
2132
+ <Text
2133
+ style={
2134
+ {
2135
+ "fontFamily": "GTStandard",
2136
+ }
2137
+ }
2138
+ suppressHighlighting={true}
2139
+ >
2140
+ #BD100F
2141
+ </Text>
2142
+ <View
2143
+ style={
2144
+ {
2145
+ "backgroundColor": "#BD100F",
2146
+ "height": 20,
2147
+ "width": 20,
2148
+ }
2149
+ }
2150
+ />
2151
+ </View>
2152
+ <View
2153
+ style={
2154
+ {
2155
+ "backgroundColor": "#ffffff",
2156
+ "borderBottomColor": "#A8A8A8",
2157
+ "borderBottomWidth": 2,
2158
+ "borderStyle": "solid",
2159
+ "paddingBottom": 8,
2160
+ "paddingLeft": 8,
2161
+ "paddingRight": 8,
2162
+ "paddingTop": 8,
2163
+ }
2164
+ }
2165
+ >
2166
+ <Text
2167
+ style={
2168
+ {
2169
+ "fontFamily": "GTStandard",
2170
+ }
2171
+ }
2172
+ suppressHighlighting={true}
2173
+ >
2174
+ beige-alpha.25
2175
+ </Text>
2176
+ <Text
2177
+ style={
2178
+ {
2179
+ "fontFamily": "GTStandard",
2180
+ }
2181
+ }
2182
+ suppressHighlighting={true}
2183
+ >
2184
+ #C1B59F40
2185
+ </Text>
2186
+ <View
2187
+ style={
2188
+ {
2189
+ "backgroundColor": "#C1B59F40",
2190
+ "height": 20,
2191
+ "width": 20,
2192
+ }
2193
+ }
2194
+ />
2195
+ </View>
2196
+ <View
2197
+ style={
2198
+ {
2199
+ "backgroundColor": "#ffffff",
2200
+ "borderBottomColor": "#A8A8A8",
2201
+ "borderBottomWidth": 2,
2202
+ "borderStyle": "solid",
2203
+ "paddingBottom": 8,
2204
+ "paddingLeft": 8,
2205
+ "paddingRight": 8,
2206
+ "paddingTop": 8,
2207
+ }
2208
+ }
2209
+ >
2210
+ <Text
2211
+ style={
2212
+ {
2213
+ "fontFamily": "GTStandard",
2214
+ }
2215
+ }
2216
+ suppressHighlighting={true}
2217
+ >
2218
+ beige-alpha.40
2219
+ </Text>
2220
+ <Text
2221
+ style={
2222
+ {
2223
+ "fontFamily": "GTStandard",
2224
+ }
2225
+ }
2226
+ suppressHighlighting={true}
2227
+ >
2228
+ #C1B59F66
2229
+ </Text>
2230
+ <View
2231
+ style={
2232
+ {
2233
+ "backgroundColor": "#C1B59F66",
2234
+ "height": 20,
2235
+ "width": 20,
2236
+ }
2237
+ }
2238
+ />
2239
+ </View>
2240
+ <View
2241
+ style={
2242
+ {
2243
+ "backgroundColor": "#ffffff",
2244
+ "borderBottomColor": "#A8A8A8",
2245
+ "borderBottomWidth": 2,
2246
+ "borderStyle": "solid",
2247
+ "paddingBottom": 8,
2248
+ "paddingLeft": 8,
2249
+ "paddingRight": 8,
2250
+ "paddingTop": 8,
2251
+ }
2252
+ }
2253
+ >
2254
+ <Text
2255
+ style={
2256
+ {
2257
+ "fontFamily": "GTStandard",
2258
+ }
2259
+ }
2260
+ suppressHighlighting={true}
2261
+ >
2262
+ beige-alpha.50
2263
+ </Text>
2264
+ <Text
2265
+ style={
2266
+ {
2267
+ "fontFamily": "GTStandard",
2268
+ }
2269
+ }
2270
+ suppressHighlighting={true}
2271
+ >
2272
+ #C1B59F80
2273
+ </Text>
2274
+ <View
2275
+ style={
2276
+ {
2277
+ "backgroundColor": "#C1B59F80",
2278
+ "height": 20,
2279
+ "width": 20,
2280
+ }
2281
+ }
2282
+ />
2283
+ </View>
2284
+ <View
2285
+ style={
2286
+ {
2287
+ "backgroundColor": "#ffffff",
2288
+ "borderBottomColor": "#A8A8A8",
2289
+ "borderBottomWidth": 2,
2290
+ "borderStyle": "solid",
2291
+ "paddingBottom": 8,
2292
+ "paddingLeft": 8,
2293
+ "paddingRight": 8,
2294
+ "paddingTop": 8,
2295
+ }
2296
+ }
2297
+ >
2298
+ <Text
2299
+ style={
2300
+ {
2301
+ "fontFamily": "GTStandard",
2302
+ }
2303
+ }
2304
+ suppressHighlighting={true}
2305
+ >
2306
+ grey-alpha.25
2307
+ </Text>
2308
+ <Text
2309
+ style={
2310
+ {
2311
+ "fontFamily": "GTStandard",
2312
+ }
2313
+ }
2314
+ suppressHighlighting={true}
2315
+ >
2316
+ #10101040
2317
+ </Text>
2318
+ <View
2319
+ style={
2320
+ {
2321
+ "backgroundColor": "#10101040",
2322
+ "height": 20,
2323
+ "width": 20,
2324
+ }
2325
+ }
2326
+ />
2327
+ </View>
2328
+ <View
2329
+ style={
2330
+ {
2331
+ "backgroundColor": "#ffffff",
2332
+ "borderBottomColor": "#A8A8A8",
2333
+ "borderBottomWidth": 2,
2334
+ "borderStyle": "solid",
2335
+ "paddingBottom": 8,
2336
+ "paddingLeft": 8,
2337
+ "paddingRight": 8,
2338
+ "paddingTop": 8,
2339
+ }
2340
+ }
2341
+ >
2342
+ <Text
2343
+ style={
2344
+ {
2345
+ "fontFamily": "GTStandard",
2346
+ }
2347
+ }
2348
+ suppressHighlighting={true}
2349
+ >
2350
+ grey-alpha.35
2351
+ </Text>
2352
+ <Text
2353
+ style={
2354
+ {
2355
+ "fontFamily": "GTStandard",
2356
+ }
2357
+ }
2358
+ suppressHighlighting={true}
2359
+ >
2360
+ #10101059
2361
+ </Text>
2362
+ <View
2363
+ style={
2364
+ {
2365
+ "backgroundColor": "#10101059",
2366
+ "height": 20,
2367
+ "width": 20,
2368
+ }
2369
+ }
2370
+ />
2371
+ </View>
2372
+ <View
2373
+ style={
2374
+ {
2375
+ "backgroundColor": "#ffffff",
2376
+ "borderBottomColor": "#A8A8A8",
2377
+ "borderBottomWidth": 2,
2378
+ "borderStyle": "solid",
2379
+ "paddingBottom": 8,
2380
+ "paddingLeft": 8,
2381
+ "paddingRight": 8,
2382
+ "paddingTop": 8,
2383
+ }
2384
+ }
2385
+ >
2386
+ <Text
2387
+ style={
2388
+ {
2389
+ "fontFamily": "GTStandard",
2390
+ }
2391
+ }
2392
+ suppressHighlighting={true}
2393
+ >
2394
+ grey-alpha.50
2395
+ </Text>
2396
+ <Text
2397
+ style={
2398
+ {
2399
+ "fontFamily": "GTStandard",
2400
+ }
2401
+ }
2402
+ suppressHighlighting={true}
2403
+ >
2404
+ #10101080
2405
+ </Text>
2406
+ <View
2407
+ style={
2408
+ {
2409
+ "backgroundColor": "#10101080",
2410
+ "height": 20,
2411
+ "width": 20,
2412
+ }
2413
+ }
2414
+ />
2415
+ </View>
2416
+ <View
2417
+ style={
2418
+ {
2419
+ "backgroundColor": "#ffffff",
2420
+ "borderBottomColor": "#A8A8A8",
2421
+ "borderBottomWidth": 2,
2422
+ "borderStyle": "solid",
2423
+ "paddingBottom": 8,
2424
+ "paddingLeft": 8,
2425
+ "paddingRight": 8,
2426
+ "paddingTop": 8,
2427
+ }
2428
+ }
2429
+ >
2430
+ <Text
2431
+ style={
2432
+ {
2433
+ "fontFamily": "GTStandard",
2434
+ }
2435
+ }
2436
+ suppressHighlighting={true}
2437
+ >
2438
+ white-alpha.10
2439
+ </Text>
2440
+ <Text
2441
+ style={
2442
+ {
2443
+ "fontFamily": "GTStandard",
2444
+ }
2445
+ }
2446
+ suppressHighlighting={true}
2447
+ >
2448
+ #FFFFFF1A
2449
+ </Text>
2450
+ <View
2451
+ style={
2452
+ {
2453
+ "backgroundColor": "#FFFFFF1A",
2454
+ "height": 20,
2455
+ "width": 20,
2456
+ }
2457
+ }
2458
+ />
2459
+ </View>
2460
+ <View
2461
+ style={
2462
+ {
2463
+ "backgroundColor": "#ffffff",
2464
+ "borderBottomColor": "#A8A8A8",
2465
+ "borderBottomWidth": 2,
2466
+ "borderStyle": "solid",
2467
+ "paddingBottom": 8,
2468
+ "paddingLeft": 8,
2469
+ "paddingRight": 8,
2470
+ "paddingTop": 8,
2471
+ }
2472
+ }
2473
+ >
2474
+ <Text
2475
+ style={
2476
+ {
2477
+ "fontFamily": "GTStandard",
2478
+ }
2479
+ }
2480
+ suppressHighlighting={true}
2481
+ >
2482
+ white-alpha.20
2483
+ </Text>
2484
+ <Text
2485
+ style={
2486
+ {
2487
+ "fontFamily": "GTStandard",
2488
+ }
2489
+ }
2490
+ suppressHighlighting={true}
2491
+ >
2492
+ #FFFFFF33
2493
+ </Text>
2494
+ <View
2495
+ style={
2496
+ {
2497
+ "backgroundColor": "#FFFFFF33",
2498
+ "height": 20,
2499
+ "width": 20,
2500
+ }
2501
+ }
2502
+ />
2503
+ </View>
2504
+ <View
2505
+ style={
2506
+ {
2507
+ "backgroundColor": "#ffffff",
2508
+ "borderBottomColor": "#A8A8A8",
2509
+ "borderBottomWidth": 2,
2510
+ "borderStyle": "solid",
2511
+ "paddingBottom": 8,
2512
+ "paddingLeft": 8,
2513
+ "paddingRight": 8,
2514
+ "paddingTop": 8,
2515
+ }
2516
+ }
2517
+ >
2518
+ <Text
2519
+ style={
2520
+ {
2521
+ "fontFamily": "GTStandard",
2522
+ }
2523
+ }
2524
+ suppressHighlighting={true}
2525
+ >
2526
+ white-alpha.60
2527
+ </Text>
2528
+ <Text
2529
+ style={
2530
+ {
2531
+ "fontFamily": "GTStandard",
2532
+ }
2533
+ }
2534
+ suppressHighlighting={true}
2535
+ >
2536
+ #FFFFFF99
2537
+ </Text>
2538
+ <View
2539
+ style={
2540
+ {
2541
+ "backgroundColor": "#FFFFFF99",
2542
+ "height": 20,
2543
+ "width": 20,
2544
+ }
2545
+ }
2546
+ />
2547
+ </View>
2548
+ <View
2549
+ style={
2550
+ {
2551
+ "backgroundColor": "#ffffff",
2552
+ "borderBottomColor": "#A8A8A8",
2553
+ "borderBottomWidth": 2,
2554
+ "borderStyle": "solid",
2555
+ "paddingBottom": 8,
2556
+ "paddingLeft": 8,
2557
+ "paddingRight": 8,
2558
+ "paddingTop": 8,
2559
+ }
2560
+ }
2561
+ >
2562
+ <Text
2563
+ style={
2564
+ {
2565
+ "fontFamily": "GTStandard",
2566
+ }
2567
+ }
2568
+ suppressHighlighting={true}
2569
+ >
2570
+ white-alpha.80
2571
+ </Text>
2572
+ <Text
2573
+ style={
2574
+ {
2575
+ "fontFamily": "GTStandard",
2576
+ }
2577
+ }
2578
+ suppressHighlighting={true}
2579
+ >
2580
+ #FFFFFFCC
2581
+ </Text>
2582
+ <View
2583
+ style={
2584
+ {
2585
+ "backgroundColor": "#FFFFFFCC",
2586
+ "height": 20,
2587
+ "width": 20,
2588
+ }
2589
+ }
2590
+ />
2591
+ </View>
2592
+ <View
2593
+ style={
2594
+ {
2595
+ "backgroundColor": "#ffffff",
2596
+ "borderBottomColor": "#A8A8A8",
2597
+ "borderBottomWidth": 2,
2598
+ "borderStyle": "solid",
2599
+ "paddingBottom": 8,
2600
+ "paddingLeft": 8,
2601
+ "paddingRight": 8,
2602
+ "paddingTop": 8,
2603
+ }
2604
+ }
2605
+ >
2606
+ <Text
2607
+ style={
2608
+ {
2609
+ "fontFamily": "GTStandard",
2610
+ }
2611
+ }
2612
+ suppressHighlighting={true}
2613
+ >
2614
+ white-alpha.90
2615
+ </Text>
2616
+ <Text
2617
+ style={
2618
+ {
2619
+ "fontFamily": "GTStandard",
2620
+ }
2621
+ }
2622
+ suppressHighlighting={true}
2623
+ >
2624
+ #FFFFFFE5
2625
+ </Text>
2626
+ <View
2627
+ style={
2628
+ {
2629
+ "backgroundColor": "#FFFFFFE5",
2630
+ "height": 20,
2631
+ "width": 20,
2632
+ }
2633
+ }
2634
+ />
2635
+ </View>
2636
+ <View
2637
+ style={
2638
+ {
2639
+ "backgroundColor": "#ffffff",
2640
+ "borderBottomColor": "#A8A8A8",
2641
+ "borderBottomWidth": 2,
2642
+ "borderStyle": "solid",
2643
+ "paddingBottom": 8,
2644
+ "paddingLeft": 8,
2645
+ "paddingRight": 8,
2646
+ "paddingTop": 8,
2647
+ }
2648
+ }
2649
+ >
2650
+ <Text
2651
+ style={
2652
+ {
2653
+ "fontFamily": "GTStandard",
2654
+ }
2655
+ }
2656
+ suppressHighlighting={true}
2657
+ >
2658
+ white
2659
+ </Text>
2660
+ <Text
2661
+ style={
2662
+ {
2663
+ "fontFamily": "GTStandard",
2664
+ }
2665
+ }
2666
+ suppressHighlighting={true}
2667
+ >
2668
+ #FFFFFF
2669
+ </Text>
2670
+ <View
2671
+ style={
2672
+ {
2673
+ "backgroundColor": "#FFFFFF",
2674
+ "height": 20,
2675
+ "width": 20,
2676
+ }
2677
+ }
2678
+ />
2679
+ </View>
2680
+ <View
2681
+ style={
2682
+ {
2683
+ "backgroundColor": "#ffffff",
2684
+ "borderBottomColor": "#A8A8A8",
2685
+ "borderBottomWidth": 2,
2686
+ "borderStyle": "solid",
2687
+ "paddingBottom": 8,
2688
+ "paddingLeft": 8,
2689
+ "paddingRight": 8,
2690
+ "paddingTop": 8,
2691
+ }
2692
+ }
2693
+ >
2694
+ <Text
2695
+ style={
2696
+ {
2697
+ "fontFamily": "GTStandard",
2698
+ }
2699
+ }
2700
+ suppressHighlighting={true}
2701
+ >
2702
+ black
2703
+ </Text>
2704
+ <Text
2705
+ style={
2706
+ {
2707
+ "fontFamily": "GTStandard",
2708
+ }
2709
+ }
2710
+ suppressHighlighting={true}
2711
+ >
2712
+ #000000
2713
+ </Text>
2714
+ <View
2715
+ style={
2716
+ {
2717
+ "backgroundColor": "#000000",
2718
+ "height": 20,
2719
+ "width": 20,
2720
+ }
2721
+ }
2722
+ />
2723
+ </View>
2724
+ <View
2725
+ style={
2726
+ {
2727
+ "backgroundColor": "#ffffff",
2728
+ "borderBottomColor": "#A8A8A8",
2729
+ "borderBottomWidth": 2,
2730
+ "borderStyle": "solid",
2731
+ "paddingBottom": 8,
2732
+ "paddingLeft": 8,
2733
+ "paddingRight": 8,
2734
+ "paddingTop": 8,
2735
+ }
2736
+ }
2737
+ >
2738
+ <Text
2739
+ style={
2740
+ {
2741
+ "fontFamily": "GTStandard",
2742
+ }
2743
+ }
2744
+ suppressHighlighting={true}
2745
+ >
2746
+ transparent
2747
+ </Text>
2748
+ <Text
2749
+ style={
2750
+ {
2751
+ "fontFamily": "GTStandard",
2752
+ }
2753
+ }
2754
+ suppressHighlighting={true}
2755
+ >
2756
+ transparent
2757
+ </Text>
2758
+ <View
2759
+ style={
2760
+ {
2761
+ "backgroundColor": "transparent",
2762
+ "height": 20,
2763
+ "width": 20,
2764
+ }
2765
+ }
2766
+ />
2767
+ </View>
2768
+ </View>
2769
+ </RNCSafeAreaProvider>
2770
+ `;