@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,2192 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`bumper/Theme Light 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
+ Tokens
39
+ </Text>
40
+ <View
41
+ style={
42
+ {
43
+ "backgroundColor": "#ffffff",
44
+ "borderBottomColor": "#A8A8A8",
45
+ "borderBottomWidth": 2,
46
+ "borderStyle": "solid",
47
+ "flexDirection": "column",
48
+ "paddingBottom": 8,
49
+ "paddingTop": 8,
50
+ }
51
+ }
52
+ >
53
+ <Text
54
+ style={
55
+ {
56
+ "fontFamily": "GTStandard",
57
+ }
58
+ }
59
+ suppressHighlighting={true}
60
+ >
61
+ content.base.hi
62
+ </Text>
63
+ <Text
64
+ style={
65
+ {
66
+ "fontFamily": "GTStandard",
67
+ }
68
+ }
69
+ suppressHighlighting={true}
70
+ >
71
+ #101010
72
+ </Text>
73
+ <View
74
+ style={
75
+ {
76
+ "backgroundColor": "#101010",
77
+ "height": 20,
78
+ "width": 20,
79
+ }
80
+ }
81
+ />
82
+ </View>
83
+ <View
84
+ style={
85
+ {
86
+ "backgroundColor": "#ffffff",
87
+ "borderBottomColor": "#A8A8A8",
88
+ "borderBottomWidth": 2,
89
+ "borderStyle": "solid",
90
+ "flexDirection": "column",
91
+ "paddingBottom": 8,
92
+ "paddingTop": 8,
93
+ }
94
+ }
95
+ >
96
+ <Text
97
+ style={
98
+ {
99
+ "fontFamily": "GTStandard",
100
+ }
101
+ }
102
+ suppressHighlighting={true}
103
+ >
104
+ content.base.mid
105
+ </Text>
106
+ <Text
107
+ style={
108
+ {
109
+ "fontFamily": "GTStandard",
110
+ }
111
+ }
112
+ suppressHighlighting={true}
113
+ >
114
+ #505050
115
+ </Text>
116
+ <View
117
+ style={
118
+ {
119
+ "backgroundColor": "#505050",
120
+ "height": 20,
121
+ "width": 20,
122
+ }
123
+ }
124
+ />
125
+ </View>
126
+ <View
127
+ style={
128
+ {
129
+ "backgroundColor": "#ffffff",
130
+ "borderBottomColor": "#A8A8A8",
131
+ "borderBottomWidth": 2,
132
+ "borderStyle": "solid",
133
+ "flexDirection": "column",
134
+ "paddingBottom": 8,
135
+ "paddingTop": 8,
136
+ }
137
+ }
138
+ >
139
+ <Text
140
+ style={
141
+ {
142
+ "fontFamily": "GTStandard",
143
+ }
144
+ }
145
+ suppressHighlighting={true}
146
+ >
147
+ content.base.low
148
+ </Text>
149
+ <Text
150
+ style={
151
+ {
152
+ "fontFamily": "GTStandard",
153
+ }
154
+ }
155
+ suppressHighlighting={true}
156
+ >
157
+ #838383
158
+ </Text>
159
+ <View
160
+ style={
161
+ {
162
+ "backgroundColor": "#838383",
163
+ "height": 20,
164
+ "width": 20,
165
+ }
166
+ }
167
+ />
168
+ </View>
169
+ <View
170
+ style={
171
+ {
172
+ "backgroundColor": "#563B56",
173
+ "borderBottomColor": "#A8A8A8",
174
+ "borderBottomWidth": 2,
175
+ "borderStyle": "solid",
176
+ "flexDirection": "column",
177
+ "paddingBottom": 8,
178
+ "paddingTop": 8,
179
+ }
180
+ }
181
+ >
182
+ <Text
183
+ style={
184
+ {
185
+ "fontFamily": "GTStandard",
186
+ }
187
+ }
188
+ suppressHighlighting={true}
189
+ >
190
+ content.base.onContrasted.hi
191
+ </Text>
192
+ <Text
193
+ style={
194
+ {
195
+ "fontFamily": "GTStandard",
196
+ }
197
+ }
198
+ suppressHighlighting={true}
199
+ >
200
+ #ffffff
201
+ </Text>
202
+ <View
203
+ style={
204
+ {
205
+ "backgroundColor": "#ffffff",
206
+ "height": 20,
207
+ "width": 20,
208
+ }
209
+ }
210
+ />
211
+ </View>
212
+ <View
213
+ style={
214
+ {
215
+ "backgroundColor": "#563B56",
216
+ "borderBottomColor": "#A8A8A8",
217
+ "borderBottomWidth": 2,
218
+ "borderStyle": "solid",
219
+ "flexDirection": "column",
220
+ "paddingBottom": 8,
221
+ "paddingTop": 8,
222
+ }
223
+ }
224
+ >
225
+ <Text
226
+ style={
227
+ {
228
+ "fontFamily": "GTStandard",
229
+ }
230
+ }
231
+ suppressHighlighting={true}
232
+ >
233
+ content.base.onContrasted.mid
234
+ </Text>
235
+ <Text
236
+ style={
237
+ {
238
+ "fontFamily": "GTStandard",
239
+ }
240
+ }
241
+ suppressHighlighting={true}
242
+ >
243
+ #FFFFFFCC
244
+ </Text>
245
+ <View
246
+ style={
247
+ {
248
+ "backgroundColor": "#FFFFFFCC",
249
+ "height": 20,
250
+ "width": 20,
251
+ }
252
+ }
253
+ />
254
+ </View>
255
+ <View
256
+ style={
257
+ {
258
+ "backgroundColor": "#563B56",
259
+ "borderBottomColor": "#A8A8A8",
260
+ "borderBottomWidth": 2,
261
+ "borderStyle": "solid",
262
+ "flexDirection": "column",
263
+ "paddingBottom": 8,
264
+ "paddingTop": 8,
265
+ }
266
+ }
267
+ >
268
+ <Text
269
+ style={
270
+ {
271
+ "fontFamily": "GTStandard",
272
+ }
273
+ }
274
+ suppressHighlighting={true}
275
+ >
276
+ content.base.onContrasted.low
277
+ </Text>
278
+ <Text
279
+ style={
280
+ {
281
+ "fontFamily": "GTStandard",
282
+ }
283
+ }
284
+ suppressHighlighting={true}
285
+ >
286
+ #FFFFFF99
287
+ </Text>
288
+ <View
289
+ style={
290
+ {
291
+ "backgroundColor": "#FFFFFF99",
292
+ "height": 20,
293
+ "width": 20,
294
+ }
295
+ }
296
+ />
297
+ </View>
298
+ <View
299
+ style={
300
+ {
301
+ "backgroundColor": "#ffffff",
302
+ "borderBottomColor": "#A8A8A8",
303
+ "borderBottomWidth": 2,
304
+ "borderStyle": "solid",
305
+ "flexDirection": "column",
306
+ "paddingBottom": 8,
307
+ "paddingTop": 8,
308
+ }
309
+ }
310
+ >
311
+ <Text
312
+ style={
313
+ {
314
+ "fontFamily": "GTStandard",
315
+ }
316
+ }
317
+ suppressHighlighting={true}
318
+ >
319
+ content.accent
320
+ </Text>
321
+ <Text
322
+ style={
323
+ {
324
+ "fontFamily": "GTStandard",
325
+ }
326
+ }
327
+ suppressHighlighting={true}
328
+ >
329
+ #563B56
330
+ </Text>
331
+ <View
332
+ style={
333
+ {
334
+ "backgroundColor": "#563B56",
335
+ "height": 20,
336
+ "width": 20,
337
+ }
338
+ }
339
+ />
340
+ </View>
341
+ <View
342
+ style={
343
+ {
344
+ "backgroundColor": "#ffffff",
345
+ "borderBottomColor": "#A8A8A8",
346
+ "borderBottomWidth": 2,
347
+ "borderStyle": "solid",
348
+ "flexDirection": "column",
349
+ "paddingBottom": 8,
350
+ "paddingTop": 8,
351
+ }
352
+ }
353
+ >
354
+ <Text
355
+ style={
356
+ {
357
+ "fontFamily": "GTStandard",
358
+ }
359
+ }
360
+ suppressHighlighting={true}
361
+ >
362
+ content.promo
363
+ </Text>
364
+ <Text
365
+ style={
366
+ {
367
+ "fontFamily": "GTStandard",
368
+ }
369
+ }
370
+ suppressHighlighting={true}
371
+ >
372
+ #43390A
373
+ </Text>
374
+ <View
375
+ style={
376
+ {
377
+ "backgroundColor": "#43390A",
378
+ "height": 20,
379
+ "width": 20,
380
+ }
381
+ }
382
+ />
383
+ </View>
384
+ <View
385
+ style={
386
+ {
387
+ "backgroundColor": "#563B56",
388
+ "borderBottomColor": "#A8A8A8",
389
+ "borderBottomWidth": 2,
390
+ "borderStyle": "solid",
391
+ "flexDirection": "column",
392
+ "paddingBottom": 8,
393
+ "paddingTop": 8,
394
+ }
395
+ }
396
+ >
397
+ <Text
398
+ style={
399
+ {
400
+ "fontFamily": "GTStandard",
401
+ }
402
+ }
403
+ suppressHighlighting={true}
404
+ >
405
+ content.promo.onContrasted
406
+ </Text>
407
+ <Text
408
+ style={
409
+ {
410
+ "fontFamily": "GTStandard",
411
+ }
412
+ }
413
+ suppressHighlighting={true}
414
+ >
415
+ #FFF500
416
+ </Text>
417
+ <View
418
+ style={
419
+ {
420
+ "backgroundColor": "#FFF500",
421
+ "height": 20,
422
+ "width": 20,
423
+ }
424
+ }
425
+ />
426
+ </View>
427
+ <View
428
+ style={
429
+ {
430
+ "backgroundColor": "#ffffff",
431
+ "borderBottomColor": "#A8A8A8",
432
+ "borderBottomWidth": 2,
433
+ "borderStyle": "solid",
434
+ "flexDirection": "column",
435
+ "paddingBottom": 8,
436
+ "paddingTop": 8,
437
+ }
438
+ }
439
+ >
440
+ <Text
441
+ style={
442
+ {
443
+ "fontFamily": "GTStandard",
444
+ }
445
+ }
446
+ suppressHighlighting={true}
447
+ >
448
+ content.info
449
+ </Text>
450
+ <Text
451
+ style={
452
+ {
453
+ "fontFamily": "GTStandard",
454
+ }
455
+ }
456
+ suppressHighlighting={true}
457
+ >
458
+ #125A87
459
+ </Text>
460
+ <View
461
+ style={
462
+ {
463
+ "backgroundColor": "#125A87",
464
+ "height": 20,
465
+ "width": 20,
466
+ }
467
+ }
468
+ />
469
+ </View>
470
+ <View
471
+ style={
472
+ {
473
+ "backgroundColor": "#ffffff",
474
+ "borderBottomColor": "#A8A8A8",
475
+ "borderBottomWidth": 2,
476
+ "borderStyle": "solid",
477
+ "flexDirection": "column",
478
+ "paddingBottom": 8,
479
+ "paddingTop": 8,
480
+ }
481
+ }
482
+ >
483
+ <Text
484
+ style={
485
+ {
486
+ "fontFamily": "GTStandard",
487
+ }
488
+ }
489
+ suppressHighlighting={true}
490
+ >
491
+ content.success
492
+ </Text>
493
+ <Text
494
+ style={
495
+ {
496
+ "fontFamily": "GTStandard",
497
+ }
498
+ }
499
+ suppressHighlighting={true}
500
+ >
501
+ #357105
502
+ </Text>
503
+ <View
504
+ style={
505
+ {
506
+ "backgroundColor": "#357105",
507
+ "height": 20,
508
+ "width": 20,
509
+ }
510
+ }
511
+ />
512
+ </View>
513
+ <View
514
+ style={
515
+ {
516
+ "backgroundColor": "#ffffff",
517
+ "borderBottomColor": "#A8A8A8",
518
+ "borderBottomWidth": 2,
519
+ "borderStyle": "solid",
520
+ "flexDirection": "column",
521
+ "paddingBottom": 8,
522
+ "paddingTop": 8,
523
+ }
524
+ }
525
+ >
526
+ <Text
527
+ style={
528
+ {
529
+ "fontFamily": "GTStandard",
530
+ }
531
+ }
532
+ suppressHighlighting={true}
533
+ >
534
+ content.warning
535
+ </Text>
536
+ <Text
537
+ style={
538
+ {
539
+ "fontFamily": "GTStandard",
540
+ }
541
+ }
542
+ suppressHighlighting={true}
543
+ >
544
+ #BA930B
545
+ </Text>
546
+ <View
547
+ style={
548
+ {
549
+ "backgroundColor": "#BA930B",
550
+ "height": 20,
551
+ "width": 20,
552
+ }
553
+ }
554
+ />
555
+ </View>
556
+ <View
557
+ style={
558
+ {
559
+ "backgroundColor": "#ffffff",
560
+ "borderBottomColor": "#A8A8A8",
561
+ "borderBottomWidth": 2,
562
+ "borderStyle": "solid",
563
+ "flexDirection": "column",
564
+ "paddingBottom": 8,
565
+ "paddingTop": 8,
566
+ }
567
+ }
568
+ >
569
+ <Text
570
+ style={
571
+ {
572
+ "fontFamily": "GTStandard",
573
+ }
574
+ }
575
+ suppressHighlighting={true}
576
+ >
577
+ content.danger
578
+ </Text>
579
+ <Text
580
+ style={
581
+ {
582
+ "fontFamily": "GTStandard",
583
+ }
584
+ }
585
+ suppressHighlighting={true}
586
+ >
587
+ #BD100F
588
+ </Text>
589
+ <View
590
+ style={
591
+ {
592
+ "backgroundColor": "#BD100F",
593
+ "height": 20,
594
+ "width": 20,
595
+ }
596
+ }
597
+ />
598
+ </View>
599
+ <View
600
+ style={
601
+ {
602
+ "backgroundColor": "#ffffff",
603
+ "borderBottomColor": "#A8A8A8",
604
+ "borderBottomWidth": 2,
605
+ "borderStyle": "solid",
606
+ "flexDirection": "column",
607
+ "paddingBottom": 8,
608
+ "paddingTop": 8,
609
+ }
610
+ }
611
+ >
612
+ <Text
613
+ style={
614
+ {
615
+ "fontFamily": "GTStandard",
616
+ }
617
+ }
618
+ suppressHighlighting={true}
619
+ >
620
+ content.muted
621
+ </Text>
622
+ <Text
623
+ style={
624
+ {
625
+ "fontFamily": "GTStandard",
626
+ }
627
+ }
628
+ suppressHighlighting={true}
629
+ >
630
+ #C1B59F
631
+ </Text>
632
+ <View
633
+ style={
634
+ {
635
+ "backgroundColor": "#C1B59F",
636
+ "height": 20,
637
+ "width": 20,
638
+ }
639
+ }
640
+ />
641
+ </View>
642
+ <View
643
+ style={
644
+ {
645
+ "backgroundColor": "#ffffff",
646
+ "borderBottomColor": "#A8A8A8",
647
+ "borderBottomWidth": 2,
648
+ "borderStyle": "solid",
649
+ "flexDirection": "column",
650
+ "paddingBottom": 8,
651
+ "paddingTop": 8,
652
+ }
653
+ }
654
+ >
655
+ <Text
656
+ style={
657
+ {
658
+ "fontFamily": "GTStandard",
659
+ }
660
+ }
661
+ suppressHighlighting={true}
662
+ >
663
+ content.disabled
664
+ </Text>
665
+ <Text
666
+ style={
667
+ {
668
+ "fontFamily": "GTStandard",
669
+ }
670
+ }
671
+ suppressHighlighting={true}
672
+ >
673
+ #A8A8A8
674
+ </Text>
675
+ <View
676
+ style={
677
+ {
678
+ "backgroundColor": "#A8A8A8",
679
+ "height": 20,
680
+ "width": 20,
681
+ }
682
+ }
683
+ />
684
+ </View>
685
+ <View
686
+ style={
687
+ {
688
+ "backgroundColor": "#563B56",
689
+ "borderBottomColor": "#A8A8A8",
690
+ "borderBottomWidth": 2,
691
+ "borderStyle": "solid",
692
+ "flexDirection": "column",
693
+ "paddingBottom": 8,
694
+ "paddingTop": 8,
695
+ }
696
+ }
697
+ >
698
+ <Text
699
+ style={
700
+ {
701
+ "fontFamily": "GTStandard",
702
+ }
703
+ }
704
+ suppressHighlighting={true}
705
+ >
706
+ content.disabled.onContrasted
707
+ </Text>
708
+ <Text
709
+ style={
710
+ {
711
+ "fontFamily": "GTStandard",
712
+ }
713
+ }
714
+ suppressHighlighting={true}
715
+ >
716
+ #ECECEC
717
+ </Text>
718
+ <View
719
+ style={
720
+ {
721
+ "backgroundColor": "#ECECEC",
722
+ "height": 20,
723
+ "width": 20,
724
+ }
725
+ }
726
+ />
727
+ </View>
728
+ <View
729
+ style={
730
+ {
731
+ "backgroundColor": "#ffffff",
732
+ "borderBottomColor": "#A8A8A8",
733
+ "borderBottomWidth": 2,
734
+ "borderStyle": "solid",
735
+ "flexDirection": "column",
736
+ "paddingBottom": 8,
737
+ "paddingTop": 8,
738
+ }
739
+ }
740
+ >
741
+ <Text
742
+ style={
743
+ {
744
+ "fontFamily": "GTStandard",
745
+ }
746
+ }
747
+ suppressHighlighting={true}
748
+ >
749
+ bg.base.hi.default
750
+ </Text>
751
+ <Text
752
+ style={
753
+ {
754
+ "fontFamily": "GTStandard",
755
+ }
756
+ }
757
+ suppressHighlighting={true}
758
+ >
759
+ #F1ECE4
760
+ </Text>
761
+ <View
762
+ style={
763
+ {
764
+ "backgroundColor": "#F1ECE4",
765
+ "height": 20,
766
+ "width": 20,
767
+ }
768
+ }
769
+ />
770
+ </View>
771
+ <View
772
+ style={
773
+ {
774
+ "backgroundColor": "#ffffff",
775
+ "borderBottomColor": "#A8A8A8",
776
+ "borderBottomWidth": 2,
777
+ "borderStyle": "solid",
778
+ "flexDirection": "column",
779
+ "paddingBottom": 8,
780
+ "paddingTop": 8,
781
+ }
782
+ }
783
+ >
784
+ <Text
785
+ style={
786
+ {
787
+ "fontFamily": "GTStandard",
788
+ }
789
+ }
790
+ suppressHighlighting={true}
791
+ >
792
+ bg.base.hi.pressed
793
+ </Text>
794
+ <Text
795
+ style={
796
+ {
797
+ "fontFamily": "GTStandard",
798
+ }
799
+ }
800
+ suppressHighlighting={true}
801
+ >
802
+ #EAE3D6
803
+ </Text>
804
+ <View
805
+ style={
806
+ {
807
+ "backgroundColor": "#EAE3D6",
808
+ "height": 20,
809
+ "width": 20,
810
+ }
811
+ }
812
+ />
813
+ </View>
814
+ <View
815
+ style={
816
+ {
817
+ "backgroundColor": "#ffffff",
818
+ "borderBottomColor": "#A8A8A8",
819
+ "borderBottomWidth": 2,
820
+ "borderStyle": "solid",
821
+ "flexDirection": "column",
822
+ "paddingBottom": 8,
823
+ "paddingTop": 8,
824
+ }
825
+ }
826
+ >
827
+ <Text
828
+ style={
829
+ {
830
+ "fontFamily": "GTStandard",
831
+ }
832
+ }
833
+ suppressHighlighting={true}
834
+ >
835
+ bg.base.mid.default
836
+ </Text>
837
+ <Text
838
+ style={
839
+ {
840
+ "fontFamily": "GTStandard",
841
+ }
842
+ }
843
+ suppressHighlighting={true}
844
+ >
845
+ #F7F4EE
846
+ </Text>
847
+ <View
848
+ style={
849
+ {
850
+ "backgroundColor": "#F7F4EE",
851
+ "height": 20,
852
+ "width": 20,
853
+ }
854
+ }
855
+ />
856
+ </View>
857
+ <View
858
+ style={
859
+ {
860
+ "backgroundColor": "#ffffff",
861
+ "borderBottomColor": "#A8A8A8",
862
+ "borderBottomWidth": 2,
863
+ "borderStyle": "solid",
864
+ "flexDirection": "column",
865
+ "paddingBottom": 8,
866
+ "paddingTop": 8,
867
+ }
868
+ }
869
+ >
870
+ <Text
871
+ style={
872
+ {
873
+ "fontFamily": "GTStandard",
874
+ }
875
+ }
876
+ suppressHighlighting={true}
877
+ >
878
+ bg.base.mid.pressed
879
+ </Text>
880
+ <Text
881
+ style={
882
+ {
883
+ "fontFamily": "GTStandard",
884
+ }
885
+ }
886
+ suppressHighlighting={true}
887
+ >
888
+ #F1ECE4
889
+ </Text>
890
+ <View
891
+ style={
892
+ {
893
+ "backgroundColor": "#F1ECE4",
894
+ "height": 20,
895
+ "width": 20,
896
+ }
897
+ }
898
+ />
899
+ </View>
900
+ <View
901
+ style={
902
+ {
903
+ "backgroundColor": "#ffffff",
904
+ "borderBottomColor": "#A8A8A8",
905
+ "borderBottomWidth": 2,
906
+ "borderStyle": "solid",
907
+ "flexDirection": "column",
908
+ "paddingBottom": 8,
909
+ "paddingTop": 8,
910
+ }
911
+ }
912
+ >
913
+ <Text
914
+ style={
915
+ {
916
+ "fontFamily": "GTStandard",
917
+ }
918
+ }
919
+ suppressHighlighting={true}
920
+ >
921
+ bg.base.low.default
922
+ </Text>
923
+ <Text
924
+ style={
925
+ {
926
+ "fontFamily": "GTStandard",
927
+ }
928
+ }
929
+ suppressHighlighting={true}
930
+ >
931
+ #ffffff
932
+ </Text>
933
+ <View
934
+ style={
935
+ {
936
+ "backgroundColor": "#ffffff",
937
+ "height": 20,
938
+ "width": 20,
939
+ }
940
+ }
941
+ />
942
+ </View>
943
+ <View
944
+ style={
945
+ {
946
+ "backgroundColor": "#ffffff",
947
+ "borderBottomColor": "#A8A8A8",
948
+ "borderBottomWidth": 2,
949
+ "borderStyle": "solid",
950
+ "flexDirection": "column",
951
+ "paddingBottom": 8,
952
+ "paddingTop": 8,
953
+ }
954
+ }
955
+ >
956
+ <Text
957
+ style={
958
+ {
959
+ "fontFamily": "GTStandard",
960
+ }
961
+ }
962
+ suppressHighlighting={true}
963
+ >
964
+ bg.base.low.pressed
965
+ </Text>
966
+ <Text
967
+ style={
968
+ {
969
+ "fontFamily": "GTStandard",
970
+ }
971
+ }
972
+ suppressHighlighting={true}
973
+ >
974
+ #F7F4EE
975
+ </Text>
976
+ <View
977
+ style={
978
+ {
979
+ "backgroundColor": "#F7F4EE",
980
+ "height": 20,
981
+ "width": 20,
982
+ }
983
+ }
984
+ />
985
+ </View>
986
+ <View
987
+ style={
988
+ {
989
+ "backgroundColor": "#ffffff",
990
+ "borderBottomColor": "#A8A8A8",
991
+ "borderBottomWidth": 2,
992
+ "borderStyle": "solid",
993
+ "flexDirection": "column",
994
+ "paddingBottom": 8,
995
+ "paddingTop": 8,
996
+ }
997
+ }
998
+ >
999
+ <Text
1000
+ style={
1001
+ {
1002
+ "fontFamily": "GTStandard",
1003
+ }
1004
+ }
1005
+ suppressHighlighting={true}
1006
+ >
1007
+ bg.accent.default
1008
+ </Text>
1009
+ <Text
1010
+ style={
1011
+ {
1012
+ "fontFamily": "GTStandard",
1013
+ }
1014
+ }
1015
+ suppressHighlighting={true}
1016
+ >
1017
+ #563B56
1018
+ </Text>
1019
+ <View
1020
+ style={
1021
+ {
1022
+ "backgroundColor": "#563B56",
1023
+ "height": 20,
1024
+ "width": 20,
1025
+ }
1026
+ }
1027
+ />
1028
+ </View>
1029
+ <View
1030
+ style={
1031
+ {
1032
+ "backgroundColor": "#ffffff",
1033
+ "borderBottomColor": "#A8A8A8",
1034
+ "borderBottomWidth": 2,
1035
+ "borderStyle": "solid",
1036
+ "flexDirection": "column",
1037
+ "paddingBottom": 8,
1038
+ "paddingTop": 8,
1039
+ }
1040
+ }
1041
+ >
1042
+ <Text
1043
+ style={
1044
+ {
1045
+ "fontFamily": "GTStandard",
1046
+ }
1047
+ }
1048
+ suppressHighlighting={true}
1049
+ >
1050
+ bg.accent.pressed
1051
+ </Text>
1052
+ <Text
1053
+ style={
1054
+ {
1055
+ "fontFamily": "GTStandard",
1056
+ }
1057
+ }
1058
+ suppressHighlighting={true}
1059
+ >
1060
+ #6E4D6E
1061
+ </Text>
1062
+ <View
1063
+ style={
1064
+ {
1065
+ "backgroundColor": "#6E4D6E",
1066
+ "height": 20,
1067
+ "width": 20,
1068
+ }
1069
+ }
1070
+ />
1071
+ </View>
1072
+ <View
1073
+ style={
1074
+ {
1075
+ "backgroundColor": "#ffffff",
1076
+ "borderBottomColor": "#A8A8A8",
1077
+ "borderBottomWidth": 2,
1078
+ "borderStyle": "solid",
1079
+ "flexDirection": "column",
1080
+ "paddingBottom": 8,
1081
+ "paddingTop": 8,
1082
+ }
1083
+ }
1084
+ >
1085
+ <Text
1086
+ style={
1087
+ {
1088
+ "fontFamily": "GTStandard",
1089
+ }
1090
+ }
1091
+ suppressHighlighting={true}
1092
+ >
1093
+ bg.promo.hi.default
1094
+ </Text>
1095
+ <Text
1096
+ style={
1097
+ {
1098
+ "fontFamily": "GTStandard",
1099
+ }
1100
+ }
1101
+ suppressHighlighting={true}
1102
+ >
1103
+ #43390A
1104
+ </Text>
1105
+ <View
1106
+ style={
1107
+ {
1108
+ "backgroundColor": "#43390A",
1109
+ "height": 20,
1110
+ "width": 20,
1111
+ }
1112
+ }
1113
+ />
1114
+ </View>
1115
+ <View
1116
+ style={
1117
+ {
1118
+ "backgroundColor": "#ffffff",
1119
+ "borderBottomColor": "#A8A8A8",
1120
+ "borderBottomWidth": 2,
1121
+ "borderStyle": "solid",
1122
+ "flexDirection": "column",
1123
+ "paddingBottom": 8,
1124
+ "paddingTop": 8,
1125
+ }
1126
+ }
1127
+ >
1128
+ <Text
1129
+ style={
1130
+ {
1131
+ "fontFamily": "GTStandard",
1132
+ }
1133
+ }
1134
+ suppressHighlighting={true}
1135
+ >
1136
+ bg.promo.hi.pressed
1137
+ </Text>
1138
+ <Text
1139
+ style={
1140
+ {
1141
+ "fontFamily": "GTStandard",
1142
+ }
1143
+ }
1144
+ suppressHighlighting={true}
1145
+ >
1146
+ #594D0D
1147
+ </Text>
1148
+ <View
1149
+ style={
1150
+ {
1151
+ "backgroundColor": "#594D0D",
1152
+ "height": 20,
1153
+ "width": 20,
1154
+ }
1155
+ }
1156
+ />
1157
+ </View>
1158
+ <View
1159
+ style={
1160
+ {
1161
+ "backgroundColor": "#ffffff",
1162
+ "borderBottomColor": "#A8A8A8",
1163
+ "borderBottomWidth": 2,
1164
+ "borderStyle": "solid",
1165
+ "flexDirection": "column",
1166
+ "paddingBottom": 8,
1167
+ "paddingTop": 8,
1168
+ }
1169
+ }
1170
+ >
1171
+ <Text
1172
+ style={
1173
+ {
1174
+ "fontFamily": "GTStandard",
1175
+ }
1176
+ }
1177
+ suppressHighlighting={true}
1178
+ >
1179
+ bg.promo.mid.default
1180
+ </Text>
1181
+ <Text
1182
+ style={
1183
+ {
1184
+ "fontFamily": "GTStandard",
1185
+ }
1186
+ }
1187
+ suppressHighlighting={true}
1188
+ >
1189
+ #FFF500
1190
+ </Text>
1191
+ <View
1192
+ style={
1193
+ {
1194
+ "backgroundColor": "#FFF500",
1195
+ "height": 20,
1196
+ "width": 20,
1197
+ }
1198
+ }
1199
+ />
1200
+ </View>
1201
+ <View
1202
+ style={
1203
+ {
1204
+ "backgroundColor": "#ffffff",
1205
+ "borderBottomColor": "#A8A8A8",
1206
+ "borderBottomWidth": 2,
1207
+ "borderStyle": "solid",
1208
+ "flexDirection": "column",
1209
+ "paddingBottom": 8,
1210
+ "paddingTop": 8,
1211
+ }
1212
+ }
1213
+ >
1214
+ <Text
1215
+ style={
1216
+ {
1217
+ "fontFamily": "GTStandard",
1218
+ }
1219
+ }
1220
+ suppressHighlighting={true}
1221
+ >
1222
+ bg.promo.mid.pressed
1223
+ </Text>
1224
+ <Text
1225
+ style={
1226
+ {
1227
+ "fontFamily": "GTStandard",
1228
+ }
1229
+ }
1230
+ suppressHighlighting={true}
1231
+ >
1232
+ #FFF966
1233
+ </Text>
1234
+ <View
1235
+ style={
1236
+ {
1237
+ "backgroundColor": "#FFF966",
1238
+ "height": 20,
1239
+ "width": 20,
1240
+ }
1241
+ }
1242
+ />
1243
+ </View>
1244
+ <View
1245
+ style={
1246
+ {
1247
+ "backgroundColor": "#ffffff",
1248
+ "borderBottomColor": "#A8A8A8",
1249
+ "borderBottomWidth": 2,
1250
+ "borderStyle": "solid",
1251
+ "flexDirection": "column",
1252
+ "paddingBottom": 8,
1253
+ "paddingTop": 8,
1254
+ }
1255
+ }
1256
+ >
1257
+ <Text
1258
+ style={
1259
+ {
1260
+ "fontFamily": "GTStandard",
1261
+ }
1262
+ }
1263
+ suppressHighlighting={true}
1264
+ >
1265
+ bg.highlight.default
1266
+ </Text>
1267
+ <Text
1268
+ style={
1269
+ {
1270
+ "fontFamily": "GTStandard",
1271
+ }
1272
+ }
1273
+ suppressHighlighting={true}
1274
+ >
1275
+ #E9F4FC
1276
+ </Text>
1277
+ <View
1278
+ style={
1279
+ {
1280
+ "backgroundColor": "#E9F4FC",
1281
+ "height": 20,
1282
+ "width": 20,
1283
+ }
1284
+ }
1285
+ />
1286
+ </View>
1287
+ <View
1288
+ style={
1289
+ {
1290
+ "backgroundColor": "#ffffff",
1291
+ "borderBottomColor": "#A8A8A8",
1292
+ "borderBottomWidth": 2,
1293
+ "borderStyle": "solid",
1294
+ "flexDirection": "column",
1295
+ "paddingBottom": 8,
1296
+ "paddingTop": 8,
1297
+ }
1298
+ }
1299
+ >
1300
+ <Text
1301
+ style={
1302
+ {
1303
+ "fontFamily": "GTStandard",
1304
+ }
1305
+ }
1306
+ suppressHighlighting={true}
1307
+ >
1308
+ bg.highlight.pressed
1309
+ </Text>
1310
+ <Text
1311
+ style={
1312
+ {
1313
+ "fontFamily": "GTStandard",
1314
+ }
1315
+ }
1316
+ suppressHighlighting={true}
1317
+ >
1318
+ #BCDFF6
1319
+ </Text>
1320
+ <View
1321
+ style={
1322
+ {
1323
+ "backgroundColor": "#BCDFF6",
1324
+ "height": 20,
1325
+ "width": 20,
1326
+ }
1327
+ }
1328
+ />
1329
+ </View>
1330
+ <View
1331
+ style={
1332
+ {
1333
+ "backgroundColor": "#ffffff",
1334
+ "borderBottomColor": "#A8A8A8",
1335
+ "borderBottomWidth": 2,
1336
+ "borderStyle": "solid",
1337
+ "flexDirection": "column",
1338
+ "paddingBottom": 8,
1339
+ "paddingTop": 8,
1340
+ }
1341
+ }
1342
+ >
1343
+ <Text
1344
+ style={
1345
+ {
1346
+ "fontFamily": "GTStandard",
1347
+ }
1348
+ }
1349
+ suppressHighlighting={true}
1350
+ >
1351
+ bg.info.hi
1352
+ </Text>
1353
+ <Text
1354
+ style={
1355
+ {
1356
+ "fontFamily": "GTStandard",
1357
+ }
1358
+ }
1359
+ suppressHighlighting={true}
1360
+ >
1361
+ #1772AB
1362
+ </Text>
1363
+ <View
1364
+ style={
1365
+ {
1366
+ "backgroundColor": "#1772AB",
1367
+ "height": 20,
1368
+ "width": 20,
1369
+ }
1370
+ }
1371
+ />
1372
+ </View>
1373
+ <View
1374
+ style={
1375
+ {
1376
+ "backgroundColor": "#ffffff",
1377
+ "borderBottomColor": "#A8A8A8",
1378
+ "borderBottomWidth": 2,
1379
+ "borderStyle": "solid",
1380
+ "flexDirection": "column",
1381
+ "paddingBottom": 8,
1382
+ "paddingTop": 8,
1383
+ }
1384
+ }
1385
+ >
1386
+ <Text
1387
+ style={
1388
+ {
1389
+ "fontFamily": "GTStandard",
1390
+ }
1391
+ }
1392
+ suppressHighlighting={true}
1393
+ >
1394
+ bg.info.mid
1395
+ </Text>
1396
+ <Text
1397
+ style={
1398
+ {
1399
+ "fontFamily": "GTStandard",
1400
+ }
1401
+ }
1402
+ suppressHighlighting={true}
1403
+ >
1404
+ #E9F4FC
1405
+ </Text>
1406
+ <View
1407
+ style={
1408
+ {
1409
+ "backgroundColor": "#E9F4FC",
1410
+ "height": 20,
1411
+ "width": 20,
1412
+ }
1413
+ }
1414
+ />
1415
+ </View>
1416
+ <View
1417
+ style={
1418
+ {
1419
+ "backgroundColor": "#ffffff",
1420
+ "borderBottomColor": "#A8A8A8",
1421
+ "borderBottomWidth": 2,
1422
+ "borderStyle": "solid",
1423
+ "flexDirection": "column",
1424
+ "paddingBottom": 8,
1425
+ "paddingTop": 8,
1426
+ }
1427
+ }
1428
+ >
1429
+ <Text
1430
+ style={
1431
+ {
1432
+ "fontFamily": "GTStandard",
1433
+ }
1434
+ }
1435
+ suppressHighlighting={true}
1436
+ >
1437
+ bg.success.hi
1438
+ </Text>
1439
+ <Text
1440
+ style={
1441
+ {
1442
+ "fontFamily": "GTStandard",
1443
+ }
1444
+ }
1445
+ suppressHighlighting={true}
1446
+ >
1447
+ #438D06
1448
+ </Text>
1449
+ <View
1450
+ style={
1451
+ {
1452
+ "backgroundColor": "#438D06",
1453
+ "height": 20,
1454
+ "width": 20,
1455
+ }
1456
+ }
1457
+ />
1458
+ </View>
1459
+ <View
1460
+ style={
1461
+ {
1462
+ "backgroundColor": "#ffffff",
1463
+ "borderBottomColor": "#A8A8A8",
1464
+ "borderBottomWidth": 2,
1465
+ "borderStyle": "solid",
1466
+ "flexDirection": "column",
1467
+ "paddingBottom": 8,
1468
+ "paddingTop": 8,
1469
+ }
1470
+ }
1471
+ >
1472
+ <Text
1473
+ style={
1474
+ {
1475
+ "fontFamily": "GTStandard",
1476
+ }
1477
+ }
1478
+ suppressHighlighting={true}
1479
+ >
1480
+ bg.success.mid
1481
+ </Text>
1482
+ <Text
1483
+ style={
1484
+ {
1485
+ "fontFamily": "GTStandard",
1486
+ }
1487
+ }
1488
+ suppressHighlighting={true}
1489
+ >
1490
+ #ECFEDD
1491
+ </Text>
1492
+ <View
1493
+ style={
1494
+ {
1495
+ "backgroundColor": "#ECFEDD",
1496
+ "height": 20,
1497
+ "width": 20,
1498
+ }
1499
+ }
1500
+ />
1501
+ </View>
1502
+ <View
1503
+ style={
1504
+ {
1505
+ "backgroundColor": "#ffffff",
1506
+ "borderBottomColor": "#A8A8A8",
1507
+ "borderBottomWidth": 2,
1508
+ "borderStyle": "solid",
1509
+ "flexDirection": "column",
1510
+ "paddingBottom": 8,
1511
+ "paddingTop": 8,
1512
+ }
1513
+ }
1514
+ >
1515
+ <Text
1516
+ style={
1517
+ {
1518
+ "fontFamily": "GTStandard",
1519
+ }
1520
+ }
1521
+ suppressHighlighting={true}
1522
+ >
1523
+ bg.warning.hi
1524
+ </Text>
1525
+ <Text
1526
+ style={
1527
+ {
1528
+ "fontFamily": "GTStandard",
1529
+ }
1530
+ }
1531
+ suppressHighlighting={true}
1532
+ >
1533
+ #EFC11F
1534
+ </Text>
1535
+ <View
1536
+ style={
1537
+ {
1538
+ "backgroundColor": "#EFC11F",
1539
+ "height": 20,
1540
+ "width": 20,
1541
+ }
1542
+ }
1543
+ />
1544
+ </View>
1545
+ <View
1546
+ style={
1547
+ {
1548
+ "backgroundColor": "#ffffff",
1549
+ "borderBottomColor": "#A8A8A8",
1550
+ "borderBottomWidth": 2,
1551
+ "borderStyle": "solid",
1552
+ "flexDirection": "column",
1553
+ "paddingBottom": 8,
1554
+ "paddingTop": 8,
1555
+ }
1556
+ }
1557
+ >
1558
+ <Text
1559
+ style={
1560
+ {
1561
+ "fontFamily": "GTStandard",
1562
+ }
1563
+ }
1564
+ suppressHighlighting={true}
1565
+ >
1566
+ bg.warning.mid
1567
+ </Text>
1568
+ <Text
1569
+ style={
1570
+ {
1571
+ "fontFamily": "GTStandard",
1572
+ }
1573
+ }
1574
+ suppressHighlighting={true}
1575
+ >
1576
+ #FDF8E7
1577
+ </Text>
1578
+ <View
1579
+ style={
1580
+ {
1581
+ "backgroundColor": "#FDF8E7",
1582
+ "height": 20,
1583
+ "width": 20,
1584
+ }
1585
+ }
1586
+ />
1587
+ </View>
1588
+ <View
1589
+ style={
1590
+ {
1591
+ "backgroundColor": "#ffffff",
1592
+ "borderBottomColor": "#A8A8A8",
1593
+ "borderBottomWidth": 2,
1594
+ "borderStyle": "solid",
1595
+ "flexDirection": "column",
1596
+ "paddingBottom": 8,
1597
+ "paddingTop": 8,
1598
+ }
1599
+ }
1600
+ >
1601
+ <Text
1602
+ style={
1603
+ {
1604
+ "fontFamily": "GTStandard",
1605
+ }
1606
+ }
1607
+ suppressHighlighting={true}
1608
+ >
1609
+ bg.danger.hi
1610
+ </Text>
1611
+ <Text
1612
+ style={
1613
+ {
1614
+ "fontFamily": "GTStandard",
1615
+ }
1616
+ }
1617
+ suppressHighlighting={true}
1618
+ >
1619
+ #F14847
1620
+ </Text>
1621
+ <View
1622
+ style={
1623
+ {
1624
+ "backgroundColor": "#F14847",
1625
+ "height": 20,
1626
+ "width": 20,
1627
+ }
1628
+ }
1629
+ />
1630
+ </View>
1631
+ <View
1632
+ style={
1633
+ {
1634
+ "backgroundColor": "#ffffff",
1635
+ "borderBottomColor": "#A8A8A8",
1636
+ "borderBottomWidth": 2,
1637
+ "borderStyle": "solid",
1638
+ "flexDirection": "column",
1639
+ "paddingBottom": 8,
1640
+ "paddingTop": 8,
1641
+ }
1642
+ }
1643
+ >
1644
+ <Text
1645
+ style={
1646
+ {
1647
+ "fontFamily": "GTStandard",
1648
+ }
1649
+ }
1650
+ suppressHighlighting={true}
1651
+ >
1652
+ bg.danger.mid
1653
+ </Text>
1654
+ <Text
1655
+ style={
1656
+ {
1657
+ "fontFamily": "GTStandard",
1658
+ }
1659
+ }
1660
+ suppressHighlighting={true}
1661
+ >
1662
+ #FDE4E3
1663
+ </Text>
1664
+ <View
1665
+ style={
1666
+ {
1667
+ "backgroundColor": "#FDE4E3",
1668
+ "height": 20,
1669
+ "width": 20,
1670
+ }
1671
+ }
1672
+ />
1673
+ </View>
1674
+ <View
1675
+ style={
1676
+ {
1677
+ "backgroundColor": "#ffffff",
1678
+ "borderBottomColor": "#A8A8A8",
1679
+ "borderBottomWidth": 2,
1680
+ "borderStyle": "solid",
1681
+ "flexDirection": "column",
1682
+ "paddingBottom": 8,
1683
+ "paddingTop": 8,
1684
+ }
1685
+ }
1686
+ >
1687
+ <Text
1688
+ style={
1689
+ {
1690
+ "fontFamily": "GTStandard",
1691
+ }
1692
+ }
1693
+ suppressHighlighting={true}
1694
+ >
1695
+ bg.disabled.hi
1696
+ </Text>
1697
+ <Text
1698
+ style={
1699
+ {
1700
+ "fontFamily": "GTStandard",
1701
+ }
1702
+ }
1703
+ suppressHighlighting={true}
1704
+ >
1705
+ #A8A8A8
1706
+ </Text>
1707
+ <View
1708
+ style={
1709
+ {
1710
+ "backgroundColor": "#A8A8A8",
1711
+ "height": 20,
1712
+ "width": 20,
1713
+ }
1714
+ }
1715
+ />
1716
+ </View>
1717
+ <View
1718
+ style={
1719
+ {
1720
+ "backgroundColor": "#ffffff",
1721
+ "borderBottomColor": "#A8A8A8",
1722
+ "borderBottomWidth": 2,
1723
+ "borderStyle": "solid",
1724
+ "flexDirection": "column",
1725
+ "paddingBottom": 8,
1726
+ "paddingTop": 8,
1727
+ }
1728
+ }
1729
+ >
1730
+ <Text
1731
+ style={
1732
+ {
1733
+ "fontFamily": "GTStandard",
1734
+ }
1735
+ }
1736
+ suppressHighlighting={true}
1737
+ >
1738
+ bg.disabled.mid
1739
+ </Text>
1740
+ <Text
1741
+ style={
1742
+ {
1743
+ "fontFamily": "GTStandard",
1744
+ }
1745
+ }
1746
+ suppressHighlighting={true}
1747
+ >
1748
+ #ECECEC
1749
+ </Text>
1750
+ <View
1751
+ style={
1752
+ {
1753
+ "backgroundColor": "#ECECEC",
1754
+ "height": 20,
1755
+ "width": 20,
1756
+ }
1757
+ }
1758
+ />
1759
+ </View>
1760
+ <View
1761
+ style={
1762
+ {
1763
+ "backgroundColor": "#ffffff",
1764
+ "borderBottomColor": "#A8A8A8",
1765
+ "borderBottomWidth": 2,
1766
+ "borderStyle": "solid",
1767
+ "flexDirection": "column",
1768
+ "paddingBottom": 8,
1769
+ "paddingTop": 8,
1770
+ }
1771
+ }
1772
+ >
1773
+ <Text
1774
+ style={
1775
+ {
1776
+ "fontFamily": "GTStandard",
1777
+ }
1778
+ }
1779
+ suppressHighlighting={true}
1780
+ >
1781
+ bg.overlay
1782
+ </Text>
1783
+ <Text
1784
+ style={
1785
+ {
1786
+ "fontFamily": "GTStandard",
1787
+ }
1788
+ }
1789
+ suppressHighlighting={true}
1790
+ >
1791
+ #10101080
1792
+ </Text>
1793
+ <View
1794
+ style={
1795
+ {
1796
+ "backgroundColor": "#10101080",
1797
+ "height": 20,
1798
+ "width": 20,
1799
+ }
1800
+ }
1801
+ />
1802
+ </View>
1803
+ <View
1804
+ style={
1805
+ {
1806
+ "backgroundColor": "#ffffff",
1807
+ "borderBottomColor": "#A8A8A8",
1808
+ "borderBottomWidth": 2,
1809
+ "borderStyle": "solid",
1810
+ "flexDirection": "column",
1811
+ "paddingBottom": 8,
1812
+ "paddingTop": 8,
1813
+ }
1814
+ }
1815
+ >
1816
+ <Text
1817
+ style={
1818
+ {
1819
+ "fontFamily": "GTStandard",
1820
+ }
1821
+ }
1822
+ suppressHighlighting={true}
1823
+ >
1824
+ border.base.hi
1825
+ </Text>
1826
+ <Text
1827
+ style={
1828
+ {
1829
+ "fontFamily": "GTStandard",
1830
+ }
1831
+ }
1832
+ suppressHighlighting={true}
1833
+ >
1834
+ #101010
1835
+ </Text>
1836
+ <View
1837
+ style={
1838
+ {
1839
+ "backgroundColor": "#101010",
1840
+ "height": 20,
1841
+ "width": 20,
1842
+ }
1843
+ }
1844
+ />
1845
+ </View>
1846
+ <View
1847
+ style={
1848
+ {
1849
+ "backgroundColor": "#ffffff",
1850
+ "borderBottomColor": "#A8A8A8",
1851
+ "borderBottomWidth": 2,
1852
+ "borderStyle": "solid",
1853
+ "flexDirection": "column",
1854
+ "paddingBottom": 8,
1855
+ "paddingTop": 8,
1856
+ }
1857
+ }
1858
+ >
1859
+ <Text
1860
+ style={
1861
+ {
1862
+ "fontFamily": "GTStandard",
1863
+ }
1864
+ }
1865
+ suppressHighlighting={true}
1866
+ >
1867
+ border.base.mid
1868
+ </Text>
1869
+ <Text
1870
+ style={
1871
+ {
1872
+ "fontFamily": "GTStandard",
1873
+ }
1874
+ }
1875
+ suppressHighlighting={true}
1876
+ >
1877
+ #A8A8A8
1878
+ </Text>
1879
+ <View
1880
+ style={
1881
+ {
1882
+ "backgroundColor": "#A8A8A8",
1883
+ "height": 20,
1884
+ "width": 20,
1885
+ }
1886
+ }
1887
+ />
1888
+ </View>
1889
+ <View
1890
+ style={
1891
+ {
1892
+ "backgroundColor": "#563B56",
1893
+ "borderBottomColor": "#A8A8A8",
1894
+ "borderBottomWidth": 2,
1895
+ "borderStyle": "solid",
1896
+ "flexDirection": "column",
1897
+ "paddingBottom": 8,
1898
+ "paddingTop": 8,
1899
+ }
1900
+ }
1901
+ >
1902
+ <Text
1903
+ style={
1904
+ {
1905
+ "fontFamily": "GTStandard",
1906
+ }
1907
+ }
1908
+ suppressHighlighting={true}
1909
+ >
1910
+ border.base.onContrasted.hi
1911
+ </Text>
1912
+ <Text
1913
+ style={
1914
+ {
1915
+ "fontFamily": "GTStandard",
1916
+ }
1917
+ }
1918
+ suppressHighlighting={true}
1919
+ >
1920
+ #ffffff
1921
+ </Text>
1922
+ <View
1923
+ style={
1924
+ {
1925
+ "backgroundColor": "#ffffff",
1926
+ "height": 20,
1927
+ "width": 20,
1928
+ }
1929
+ }
1930
+ />
1931
+ </View>
1932
+ <View
1933
+ style={
1934
+ {
1935
+ "backgroundColor": "#563B56",
1936
+ "borderBottomColor": "#A8A8A8",
1937
+ "borderBottomWidth": 2,
1938
+ "borderStyle": "solid",
1939
+ "flexDirection": "column",
1940
+ "paddingBottom": 8,
1941
+ "paddingTop": 8,
1942
+ }
1943
+ }
1944
+ >
1945
+ <Text
1946
+ style={
1947
+ {
1948
+ "fontFamily": "GTStandard",
1949
+ }
1950
+ }
1951
+ suppressHighlighting={true}
1952
+ >
1953
+ border.base.onContrasted.mid
1954
+ </Text>
1955
+ <Text
1956
+ style={
1957
+ {
1958
+ "fontFamily": "GTStandard",
1959
+ }
1960
+ }
1961
+ suppressHighlighting={true}
1962
+ >
1963
+ #FFFFFF99
1964
+ </Text>
1965
+ <View
1966
+ style={
1967
+ {
1968
+ "backgroundColor": "#FFFFFF99",
1969
+ "height": 20,
1970
+ "width": 20,
1971
+ }
1972
+ }
1973
+ />
1974
+ </View>
1975
+ <View
1976
+ style={
1977
+ {
1978
+ "backgroundColor": "#ffffff",
1979
+ "borderBottomColor": "#A8A8A8",
1980
+ "borderBottomWidth": 2,
1981
+ "borderStyle": "solid",
1982
+ "flexDirection": "column",
1983
+ "paddingBottom": 8,
1984
+ "paddingTop": 8,
1985
+ }
1986
+ }
1987
+ >
1988
+ <Text
1989
+ style={
1990
+ {
1991
+ "fontFamily": "GTStandard",
1992
+ }
1993
+ }
1994
+ suppressHighlighting={true}
1995
+ >
1996
+ border.info
1997
+ </Text>
1998
+ <Text
1999
+ style={
2000
+ {
2001
+ "fontFamily": "GTStandard",
2002
+ }
2003
+ }
2004
+ suppressHighlighting={true}
2005
+ >
2006
+ #1772AB
2007
+ </Text>
2008
+ <View
2009
+ style={
2010
+ {
2011
+ "backgroundColor": "#1772AB",
2012
+ "height": 20,
2013
+ "width": 20,
2014
+ }
2015
+ }
2016
+ />
2017
+ </View>
2018
+ <View
2019
+ style={
2020
+ {
2021
+ "backgroundColor": "#ffffff",
2022
+ "borderBottomColor": "#A8A8A8",
2023
+ "borderBottomWidth": 2,
2024
+ "borderStyle": "solid",
2025
+ "flexDirection": "column",
2026
+ "paddingBottom": 8,
2027
+ "paddingTop": 8,
2028
+ }
2029
+ }
2030
+ >
2031
+ <Text
2032
+ style={
2033
+ {
2034
+ "fontFamily": "GTStandard",
2035
+ }
2036
+ }
2037
+ suppressHighlighting={true}
2038
+ >
2039
+ border.success
2040
+ </Text>
2041
+ <Text
2042
+ style={
2043
+ {
2044
+ "fontFamily": "GTStandard",
2045
+ }
2046
+ }
2047
+ suppressHighlighting={true}
2048
+ >
2049
+ #438D06
2050
+ </Text>
2051
+ <View
2052
+ style={
2053
+ {
2054
+ "backgroundColor": "#438D06",
2055
+ "height": 20,
2056
+ "width": 20,
2057
+ }
2058
+ }
2059
+ />
2060
+ </View>
2061
+ <View
2062
+ style={
2063
+ {
2064
+ "backgroundColor": "#ffffff",
2065
+ "borderBottomColor": "#A8A8A8",
2066
+ "borderBottomWidth": 2,
2067
+ "borderStyle": "solid",
2068
+ "flexDirection": "column",
2069
+ "paddingBottom": 8,
2070
+ "paddingTop": 8,
2071
+ }
2072
+ }
2073
+ >
2074
+ <Text
2075
+ style={
2076
+ {
2077
+ "fontFamily": "GTStandard",
2078
+ }
2079
+ }
2080
+ suppressHighlighting={true}
2081
+ >
2082
+ border.warning
2083
+ </Text>
2084
+ <Text
2085
+ style={
2086
+ {
2087
+ "fontFamily": "GTStandard",
2088
+ }
2089
+ }
2090
+ suppressHighlighting={true}
2091
+ >
2092
+ #EFC11F
2093
+ </Text>
2094
+ <View
2095
+ style={
2096
+ {
2097
+ "backgroundColor": "#EFC11F",
2098
+ "height": 20,
2099
+ "width": 20,
2100
+ }
2101
+ }
2102
+ />
2103
+ </View>
2104
+ <View
2105
+ style={
2106
+ {
2107
+ "backgroundColor": "#ffffff",
2108
+ "borderBottomColor": "#A8A8A8",
2109
+ "borderBottomWidth": 2,
2110
+ "borderStyle": "solid",
2111
+ "flexDirection": "column",
2112
+ "paddingBottom": 8,
2113
+ "paddingTop": 8,
2114
+ }
2115
+ }
2116
+ >
2117
+ <Text
2118
+ style={
2119
+ {
2120
+ "fontFamily": "GTStandard",
2121
+ }
2122
+ }
2123
+ suppressHighlighting={true}
2124
+ >
2125
+ border.danger
2126
+ </Text>
2127
+ <Text
2128
+ style={
2129
+ {
2130
+ "fontFamily": "GTStandard",
2131
+ }
2132
+ }
2133
+ suppressHighlighting={true}
2134
+ >
2135
+ #F14847
2136
+ </Text>
2137
+ <View
2138
+ style={
2139
+ {
2140
+ "backgroundColor": "#F14847",
2141
+ "height": 20,
2142
+ "width": 20,
2143
+ }
2144
+ }
2145
+ />
2146
+ </View>
2147
+ <View
2148
+ style={
2149
+ {
2150
+ "backgroundColor": "#ffffff",
2151
+ "borderBottomColor": "#A8A8A8",
2152
+ "borderBottomWidth": 2,
2153
+ "borderStyle": "solid",
2154
+ "flexDirection": "column",
2155
+ "paddingBottom": 8,
2156
+ "paddingTop": 8,
2157
+ }
2158
+ }
2159
+ >
2160
+ <Text
2161
+ style={
2162
+ {
2163
+ "fontFamily": "GTStandard",
2164
+ }
2165
+ }
2166
+ suppressHighlighting={true}
2167
+ >
2168
+ border.disabled
2169
+ </Text>
2170
+ <Text
2171
+ style={
2172
+ {
2173
+ "fontFamily": "GTStandard",
2174
+ }
2175
+ }
2176
+ suppressHighlighting={true}
2177
+ >
2178
+ #CDCED0
2179
+ </Text>
2180
+ <View
2181
+ style={
2182
+ {
2183
+ "backgroundColor": "#CDCED0",
2184
+ "height": 20,
2185
+ "width": 20,
2186
+ }
2187
+ }
2188
+ />
2189
+ </View>
2190
+ </View>
2191
+ </RNCSafeAreaProvider>
2192
+ `;