@grupalia/rn-ui-kit 0.0.1

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 (97) hide show
  1. package/README.md +46 -0
  2. package/lib/commonjs/components/BaseButton.js +246 -0
  3. package/lib/commonjs/components/BaseButton.js.map +1 -0
  4. package/lib/commonjs/components/index.js +14 -0
  5. package/lib/commonjs/components/index.js.map +1 -0
  6. package/lib/commonjs/index.js +29 -0
  7. package/lib/commonjs/index.js.map +1 -0
  8. package/lib/commonjs/package.json +1 -0
  9. package/lib/commonjs/preset.js +30 -0
  10. package/lib/commonjs/preset.js.map +1 -0
  11. package/lib/commonjs/styles/background-colors.js +135 -0
  12. package/lib/commonjs/styles/background-colors.js.map +1 -0
  13. package/lib/commonjs/styles/border-colors.js +51 -0
  14. package/lib/commonjs/styles/border-colors.js.map +1 -0
  15. package/lib/commonjs/styles/colors.js +390 -0
  16. package/lib/commonjs/styles/colors.js.map +1 -0
  17. package/lib/commonjs/styles/foreground-colors.js +91 -0
  18. package/lib/commonjs/styles/foreground-colors.js.map +1 -0
  19. package/lib/commonjs/styles/gradients.js +1241 -0
  20. package/lib/commonjs/styles/gradients.js.map +1 -0
  21. package/lib/commonjs/styles/text-colors.js +99 -0
  22. package/lib/commonjs/styles/text-colors.js.map +1 -0
  23. package/lib/commonjs/types/nativewind-env.d.js +3 -0
  24. package/lib/commonjs/types/nativewind-env.d.js.map +1 -0
  25. package/lib/module/components/BaseButton.js +241 -0
  26. package/lib/module/components/BaseButton.js.map +1 -0
  27. package/lib/module/components/index.js +4 -0
  28. package/lib/module/components/index.js.map +1 -0
  29. package/lib/module/index.js +5 -0
  30. package/lib/module/index.js.map +1 -0
  31. package/lib/module/package.json +1 -0
  32. package/lib/module/preset.js +25 -0
  33. package/lib/module/preset.js.map +1 -0
  34. package/lib/module/styles/background-colors.js +130 -0
  35. package/lib/module/styles/background-colors.js.map +1 -0
  36. package/lib/module/styles/border-colors.js +46 -0
  37. package/lib/module/styles/border-colors.js.map +1 -0
  38. package/lib/module/styles/colors.js +386 -0
  39. package/lib/module/styles/colors.js.map +1 -0
  40. package/lib/module/styles/foreground-colors.js +86 -0
  41. package/lib/module/styles/foreground-colors.js.map +1 -0
  42. package/lib/module/styles/gradients.js +1237 -0
  43. package/lib/module/styles/gradients.js.map +1 -0
  44. package/lib/module/styles/text-colors.js +94 -0
  45. package/lib/module/styles/text-colors.js.map +1 -0
  46. package/lib/module/types/nativewind-env.d.js +3 -0
  47. package/lib/module/types/nativewind-env.d.js.map +1 -0
  48. package/lib/typescript/commonjs/components/BaseButton.d.ts +15 -0
  49. package/lib/typescript/commonjs/components/BaseButton.d.ts.map +1 -0
  50. package/lib/typescript/commonjs/components/index.d.ts +2 -0
  51. package/lib/typescript/commonjs/components/index.d.ts.map +1 -0
  52. package/lib/typescript/commonjs/index.d.ts +3 -0
  53. package/lib/typescript/commonjs/index.d.ts.map +1 -0
  54. package/lib/typescript/commonjs/package.json +1 -0
  55. package/lib/typescript/commonjs/preset.d.ts +4 -0
  56. package/lib/typescript/commonjs/preset.d.ts.map +1 -0
  57. package/lib/typescript/commonjs/styles/background-colors.d.ts +128 -0
  58. package/lib/typescript/commonjs/styles/background-colors.d.ts.map +1 -0
  59. package/lib/typescript/commonjs/styles/border-colors.d.ts +44 -0
  60. package/lib/typescript/commonjs/styles/border-colors.d.ts.map +1 -0
  61. package/lib/typescript/commonjs/styles/colors.d.ts +385 -0
  62. package/lib/typescript/commonjs/styles/colors.d.ts.map +1 -0
  63. package/lib/typescript/commonjs/styles/foreground-colors.d.ts +84 -0
  64. package/lib/typescript/commonjs/styles/foreground-colors.d.ts.map +1 -0
  65. package/lib/typescript/commonjs/styles/gradients.d.ts +900 -0
  66. package/lib/typescript/commonjs/styles/gradients.d.ts.map +1 -0
  67. package/lib/typescript/commonjs/styles/text-colors.d.ts +92 -0
  68. package/lib/typescript/commonjs/styles/text-colors.d.ts.map +1 -0
  69. package/lib/typescript/module/components/BaseButton.d.ts +15 -0
  70. package/lib/typescript/module/components/BaseButton.d.ts.map +1 -0
  71. package/lib/typescript/module/components/index.d.ts +2 -0
  72. package/lib/typescript/module/components/index.d.ts.map +1 -0
  73. package/lib/typescript/module/index.d.ts +3 -0
  74. package/lib/typescript/module/index.d.ts.map +1 -0
  75. package/lib/typescript/module/package.json +1 -0
  76. package/lib/typescript/module/preset.d.ts +4 -0
  77. package/lib/typescript/module/preset.d.ts.map +1 -0
  78. package/lib/typescript/module/styles/background-colors.d.ts +128 -0
  79. package/lib/typescript/module/styles/background-colors.d.ts.map +1 -0
  80. package/lib/typescript/module/styles/border-colors.d.ts +44 -0
  81. package/lib/typescript/module/styles/border-colors.d.ts.map +1 -0
  82. package/lib/typescript/module/styles/colors.d.ts +385 -0
  83. package/lib/typescript/module/styles/colors.d.ts.map +1 -0
  84. package/lib/typescript/module/styles/foreground-colors.d.ts +84 -0
  85. package/lib/typescript/module/styles/foreground-colors.d.ts.map +1 -0
  86. package/lib/typescript/module/styles/gradients.d.ts +900 -0
  87. package/lib/typescript/module/styles/gradients.d.ts.map +1 -0
  88. package/lib/typescript/module/styles/text-colors.d.ts +92 -0
  89. package/lib/typescript/module/styles/text-colors.d.ts.map +1 -0
  90. package/package.json +89 -0
  91. package/src/preset.ts +32 -0
  92. package/src/styles/background-colors.ts +128 -0
  93. package/src/styles/border-colors.ts +44 -0
  94. package/src/styles/colors.ts +383 -0
  95. package/src/styles/foreground-colors.ts +84 -0
  96. package/src/styles/gradients.ts +1570 -0
  97. package/src/styles/text-colors.ts +92 -0
@@ -0,0 +1,1570 @@
1
+ export default {
2
+ 'gray-1': {
3
+ type: 'GRADIENT_LINEAR',
4
+ angle: 90.0,
5
+ stops: [
6
+ {
7
+ color: '#4B5565',
8
+ position: 0,
9
+ },
10
+ {
11
+ color: '#697586',
12
+ position: 1,
13
+ },
14
+ ],
15
+ },
16
+ 'gray-2': {
17
+ type: 'GRADIENT_LINEAR',
18
+ angle: 45.0,
19
+ stops: [
20
+ {
21
+ color: '#364152',
22
+ position: 0,
23
+ },
24
+ {
25
+ color: '#4B5565',
26
+ position: 1,
27
+ },
28
+ ],
29
+ },
30
+ 'gray-3': {
31
+ type: 'GRADIENT_LINEAR',
32
+ angle: 45.0,
33
+ stops: [
34
+ {
35
+ color: '#202939',
36
+ position: 0,
37
+ },
38
+ {
39
+ color: '#4B5565',
40
+ position: 1,
41
+ },
42
+ ],
43
+ },
44
+ 'gray-4': {
45
+ type: 'GRADIENT_LINEAR',
46
+ angle: 90.0,
47
+ stops: [
48
+ {
49
+ color: '#202939',
50
+ position: 0,
51
+ },
52
+ {
53
+ color: '#4B5565',
54
+ position: 1,
55
+ },
56
+ ],
57
+ },
58
+ 'gray-5': {
59
+ type: 'GRADIENT_LINEAR',
60
+ angle: 26.6,
61
+ stops: [
62
+ {
63
+ color: '#202939',
64
+ position: 0,
65
+ },
66
+ {
67
+ color: '#364152',
68
+ position: 1,
69
+ },
70
+ ],
71
+ },
72
+ 'gray-6': {
73
+ type: 'GRADIENT_LINEAR',
74
+ angle: 45.0,
75
+ stops: [
76
+ {
77
+ color: '#121926',
78
+ position: 0,
79
+ },
80
+ {
81
+ color: '#4B5565',
82
+ position: 1,
83
+ },
84
+ ],
85
+ },
86
+ 'gray-7': {
87
+ type: 'GRADIENT_LINEAR',
88
+ angle: 45.0,
89
+ stops: [
90
+ {
91
+ color: '#121926',
92
+ position: 0,
93
+ },
94
+ {
95
+ color: '#364152',
96
+ position: 1,
97
+ },
98
+ ],
99
+ },
100
+ 'gray-8': {
101
+ type: 'GRADIENT_LINEAR',
102
+ angle: 180.0,
103
+ stops: [
104
+ {
105
+ color: '#FFFFFF',
106
+ position: 0,
107
+ },
108
+ {
109
+ color: '#F8FAFC',
110
+ position: 1,
111
+ },
112
+ ],
113
+ },
114
+ 'gray-9': {
115
+ type: 'GRADIENT_LINEAR',
116
+ angle: 180.0,
117
+ stops: [
118
+ {
119
+ color: '#FFFFFF',
120
+ position: 0,
121
+ },
122
+ {
123
+ color: '#EEF2F6',
124
+ position: 1,
125
+ },
126
+ ],
127
+ },
128
+ 'gray-10': {
129
+ type: 'GRADIENT_LINEAR',
130
+ angle: 180.0,
131
+ stops: [
132
+ {
133
+ color: '#FCFCFD',
134
+ position: 0,
135
+ },
136
+ {
137
+ color: '#EEF2F6',
138
+ position: 1,
139
+ },
140
+ ],
141
+ },
142
+ 'gray-11': {
143
+ type: 'GRADIENT_LINEAR',
144
+ angle: 180.0,
145
+ stops: [
146
+ {
147
+ color: '#F8FAFC',
148
+ position: 0,
149
+ },
150
+ {
151
+ color: '#EEF2F6',
152
+ position: 1,
153
+ },
154
+ ],
155
+ },
156
+ 'gray-12': {
157
+ type: 'GRADIENT_LINEAR',
158
+ angle: 180.0,
159
+ stops: [
160
+ {
161
+ color: '#FCFCFD',
162
+ position: 0,
163
+ },
164
+ {
165
+ color: '#E3E8EF',
166
+ position: 1,
167
+ },
168
+ ],
169
+ },
170
+ 'gray-13': {
171
+ type: 'GRADIENT_LINEAR',
172
+ angle: 180.0,
173
+ stops: [
174
+ {
175
+ color: '#F8FAFC',
176
+ position: 0,
177
+ },
178
+ {
179
+ color: '#E3E8EF',
180
+ position: 1,
181
+ },
182
+ ],
183
+ },
184
+ 'gray-14': {
185
+ type: 'GRADIENT_LINEAR',
186
+ angle: 180.0,
187
+ stops: [
188
+ {
189
+ color: '#EEF2F6',
190
+ position: 0,
191
+ },
192
+ {
193
+ color: '#E3E8EF',
194
+ position: 1,
195
+ },
196
+ ],
197
+ },
198
+ 'brand-1': {
199
+ type: 'GRADIENT_LINEAR',
200
+ angle: 90.0,
201
+ stops: [
202
+ {
203
+ color: '#7C3AED',
204
+ position: 0,
205
+ },
206
+ {
207
+ color: '#955CF6',
208
+ position: 1,
209
+ },
210
+ ],
211
+ },
212
+ 'brand-2': {
213
+ type: 'GRADIENT_LINEAR',
214
+ angle: 45.0,
215
+ stops: [
216
+ {
217
+ color: '#6928D9',
218
+ position: 0,
219
+ },
220
+ {
221
+ color: '#7C3AED',
222
+ position: 1,
223
+ },
224
+ ],
225
+ },
226
+ 'brand-3': {
227
+ type: 'GRADIENT_LINEAR',
228
+ angle: 45.0,
229
+ stops: [
230
+ {
231
+ color: '#5821B6',
232
+ position: 0,
233
+ },
234
+ {
235
+ color: '#7C3AED',
236
+ position: 1,
237
+ },
238
+ ],
239
+ },
240
+ 'brand-4': {
241
+ type: 'GRADIENT_LINEAR',
242
+ angle: 90.0,
243
+ stops: [
244
+ {
245
+ color: '#5821B6',
246
+ position: 0,
247
+ },
248
+ {
249
+ color: '#7C3AED',
250
+ position: 1,
251
+ },
252
+ ],
253
+ },
254
+ 'brand-5': {
255
+ type: 'GRADIENT_LINEAR',
256
+ angle: 26.6,
257
+ stops: [
258
+ {
259
+ color: '#5821B6',
260
+ position: 0,
261
+ },
262
+ {
263
+ color: '#6928D9',
264
+ position: 1,
265
+ },
266
+ ],
267
+ },
268
+ 'brand-6': {
269
+ type: 'GRADIENT_LINEAR',
270
+ angle: 45.0,
271
+ stops: [
272
+ {
273
+ color: '#4A1D95',
274
+ position: 0,
275
+ },
276
+ {
277
+ color: '#7C3AED',
278
+ position: 1,
279
+ },
280
+ ],
281
+ },
282
+ 'brand-7': {
283
+ type: 'GRADIENT_LINEAR',
284
+ angle: 45.0,
285
+ stops: [
286
+ {
287
+ color: '#4A1D95',
288
+ position: 0,
289
+ },
290
+ {
291
+ color: '#6928D9',
292
+ position: 1,
293
+ },
294
+ ],
295
+ },
296
+ 'linear-1': {
297
+ type: 'GRADIENT_LINEAR',
298
+ angle: 180.0,
299
+ stops: [
300
+ {
301
+ color: '#A5C0EE',
302
+ position: 0,
303
+ },
304
+ {
305
+ color: '#FBC5EC',
306
+ position: 1,
307
+ },
308
+ ],
309
+ },
310
+ 'linear-2': {
311
+ type: 'GRADIENT_LINEAR',
312
+ angle: 180.0,
313
+ stops: [
314
+ {
315
+ color: '#FBC2EB',
316
+ position: 0,
317
+ },
318
+ {
319
+ color: '#A18CD1',
320
+ position: 1,
321
+ },
322
+ ],
323
+ },
324
+ 'linear-3': {
325
+ type: 'GRADIENT_LINEAR',
326
+ angle: 180.0,
327
+ stops: [
328
+ {
329
+ color: '#FFD1FF',
330
+ position: 0,
331
+ },
332
+ {
333
+ color: '#FAD0C4',
334
+ position: 1,
335
+ },
336
+ ],
337
+ },
338
+ 'linear-4': {
339
+ type: 'GRADIENT_LINEAR',
340
+ angle: 225.0,
341
+ stops: [
342
+ {
343
+ color: '#FAD0C4',
344
+ position: 0,
345
+ },
346
+ {
347
+ color: '#FF9A9E',
348
+ position: 1,
349
+ },
350
+ ],
351
+ },
352
+ 'linear-5': {
353
+ type: 'GRADIENT_LINEAR',
354
+ angle: 270.0,
355
+ stops: [
356
+ {
357
+ color: '#FCB69F',
358
+ position: 0,
359
+ },
360
+ {
361
+ color: '#FFECD2',
362
+ position: 1,
363
+ },
364
+ ],
365
+ },
366
+ 'linear-6': {
367
+ type: 'GRADIENT_LINEAR',
368
+ angle: 180.0,
369
+ stops: [
370
+ {
371
+ color: '#FECFEF',
372
+ position: 0,
373
+ },
374
+ {
375
+ color: '#FF989C',
376
+ position: 1,
377
+ },
378
+ ],
379
+ },
380
+ 'linear-7': {
381
+ type: 'GRADIENT_LINEAR',
382
+ angle: 45.0,
383
+ stops: [
384
+ {
385
+ color: '#FF9DE4',
386
+ position: 0,
387
+ },
388
+ {
389
+ color: '#FFEAF6',
390
+ position: 1,
391
+ },
392
+ ],
393
+ },
394
+ 'linear-8': {
395
+ type: 'GRADIENT_LINEAR',
396
+ angle: 180.0,
397
+ stops: [
398
+ {
399
+ color: '#E6DEE9',
400
+ position: 0,
401
+ },
402
+ {
403
+ color: '#FDCAF1',
404
+ position: 1,
405
+ },
406
+ ],
407
+ },
408
+ 'linear-9': {
409
+ type: 'GRADIENT_LINEAR',
410
+ angle: 45.0,
411
+ stops: [
412
+ {
413
+ color: '#A6C0FE',
414
+ position: 0,
415
+ },
416
+ {
417
+ color: '#FFEAF6',
418
+ position: 1,
419
+ },
420
+ ],
421
+ },
422
+ 'linear-10': {
423
+ type: 'GRADIENT_LINEAR',
424
+ angle: 0.0,
425
+ stops: [
426
+ {
427
+ color: '#CFC7F8',
428
+ position: 0,
429
+ },
430
+ {
431
+ color: '#EBBBA7',
432
+ position: 1,
433
+ },
434
+ ],
435
+ },
436
+ 'linear-11': {
437
+ type: 'GRADIENT_LINEAR',
438
+ angle: 135.0,
439
+ stops: [
440
+ {
441
+ color: '#FCCB90',
442
+ position: 0,
443
+ },
444
+ {
445
+ color: '#D57EEB',
446
+ position: 1,
447
+ },
448
+ ],
449
+ },
450
+ 'linear-12': {
451
+ type: 'GRADIENT_LINEAR',
452
+ angle: 45.0,
453
+ stops: [
454
+ {
455
+ color: '#7B6AE0',
456
+ position: 0,
457
+ },
458
+ {
459
+ color: '#FFBB89',
460
+ position: 1,
461
+ },
462
+ ],
463
+ },
464
+ 'linear-13': {
465
+ type: 'GRADIENT_LINEAR',
466
+ angle: 135.0,
467
+ stops: [
468
+ {
469
+ color: '#E0C3FC',
470
+ position: 0,
471
+ },
472
+ {
473
+ color: '#8EC5FC',
474
+ position: 1,
475
+ },
476
+ ],
477
+ },
478
+ 'linear-14': {
479
+ type: 'GRADIENT_LINEAR',
480
+ angle: 0.0,
481
+ stops: [
482
+ {
483
+ color: '#FED6E3',
484
+ position: 0,
485
+ },
486
+ {
487
+ color: '#A8EDEA',
488
+ position: 1,
489
+ },
490
+ ],
491
+ },
492
+ 'linear-15': {
493
+ type: 'GRADIENT_LINEAR',
494
+ angle: 135.0,
495
+ stops: [
496
+ {
497
+ color: '#F5F7FA',
498
+ position: 0,
499
+ },
500
+ {
501
+ color: '#C3CFE2',
502
+ position: 1,
503
+ },
504
+ ],
505
+ },
506
+ 'linear-16': {
507
+ type: 'GRADIENT_LINEAR',
508
+ angle: 45.0,
509
+ stops: [
510
+ {
511
+ color: '#DFD1C5',
512
+ position: 0,
513
+ },
514
+ {
515
+ color: '#FFF6EB',
516
+ position: 1,
517
+ },
518
+ ],
519
+ },
520
+ 'linear-17': {
521
+ type: 'GRADIENT_LINEAR',
522
+ angle: 135.0,
523
+ stops: [
524
+ {
525
+ color: '#FFF6B7',
526
+ position: 0,
527
+ },
528
+ {
529
+ color: '#FB758A',
530
+ position: 1,
531
+ },
532
+ ],
533
+ },
534
+ 'linear-18': {
535
+ type: 'GRADIENT_LINEAR',
536
+ angle: 45.0,
537
+ stops: [
538
+ {
539
+ color: '#FF7EC7',
540
+ position: 0,
541
+ },
542
+ {
543
+ color: '#FFED46',
544
+ position: 1,
545
+ },
546
+ ],
547
+ },
548
+ 'linear-19': {
549
+ type: 'GRADIENT_LINEAR',
550
+ angle: 0.0,
551
+ stops: [
552
+ {
553
+ color: '#FEAFA8',
554
+ position: 0,
555
+ },
556
+ {
557
+ color: '#F5EFEF',
558
+ position: 1,
559
+ },
560
+ ],
561
+ },
562
+ 'linear-20': {
563
+ type: 'GRADIENT_LINEAR',
564
+ angle: 45.0,
565
+ stops: [
566
+ {
567
+ color: '#E9DEFA',
568
+ position: 0,
569
+ },
570
+ {
571
+ color: '#FFF6EB',
572
+ position: 1,
573
+ },
574
+ ],
575
+ },
576
+ 'linear-21': {
577
+ type: 'GRADIENT_LINEAR',
578
+ angle: 0.0,
579
+ stops: [
580
+ {
581
+ color: '#FFF1EB',
582
+ position: 0,
583
+ },
584
+ {
585
+ color: '#ACE0F9',
586
+ position: 1,
587
+ },
588
+ ],
589
+ },
590
+ 'linear-22': {
591
+ type: 'GRADIENT_LINEAR',
592
+ angle: 0.0,
593
+ stops: [
594
+ {
595
+ color: '#C1DFC4',
596
+ position: 0,
597
+ },
598
+ {
599
+ color: '#DEECDD',
600
+ position: 1,
601
+ },
602
+ ],
603
+ },
604
+ 'linear-23': {
605
+ type: 'GRADIENT_LINEAR',
606
+ angle: 45.0,
607
+ stops: [
608
+ {
609
+ color: '#A1C4FD',
610
+ position: 0,
611
+ },
612
+ {
613
+ color: '#C2E9FB',
614
+ position: 1,
615
+ },
616
+ ],
617
+ },
618
+ 'linear-24': {
619
+ type: 'GRADIENT_LINEAR',
620
+ angle: 0.0,
621
+ stops: [
622
+ {
623
+ color: '#ACCBEE',
624
+ position: 0,
625
+ },
626
+ {
627
+ color: '#E7F0FD',
628
+ position: 1,
629
+ },
630
+ ],
631
+ },
632
+ 'linear-25': {
633
+ type: 'GRADIENT_LINEAR',
634
+ angle: 0.0,
635
+ stops: [
636
+ {
637
+ color: '#84FAB0',
638
+ position: 0,
639
+ },
640
+ {
641
+ color: '#ACCBEE',
642
+ position: 1,
643
+ },
644
+ ],
645
+ },
646
+ 'linear-26': {
647
+ type: 'GRADIENT_LINEAR',
648
+ angle: 45.0,
649
+ stops: [
650
+ {
651
+ color: '#39A0FF',
652
+ position: 0,
653
+ },
654
+ {
655
+ color: '#8FFF85',
656
+ position: 1,
657
+ },
658
+ ],
659
+ },
660
+ 'linear-27': {
661
+ type: 'GRADIENT_LINEAR',
662
+ angle: 270.0,
663
+ stops: [
664
+ {
665
+ color: '#74EBD5',
666
+ position: 0,
667
+ },
668
+ {
669
+ color: '#9FACE6',
670
+ position: 1,
671
+ },
672
+ ],
673
+ },
674
+ 'linear-28': {
675
+ type: 'GRADIENT_LINEAR',
676
+ angle: 45.0,
677
+ stops: [
678
+ {
679
+ color: '#4A879A',
680
+ position: 0,
681
+ },
682
+ {
683
+ color: '#C5EDF5',
684
+ position: 1,
685
+ },
686
+ ],
687
+ },
688
+ 'linear-29': {
689
+ type: 'GRADIENT_LINEAR',
690
+ angle: 45.0,
691
+ stops: [
692
+ {
693
+ color: '#9890E3',
694
+ position: 0,
695
+ },
696
+ {
697
+ color: '#B1F4CF',
698
+ position: 1,
699
+ },
700
+ ],
701
+ },
702
+ 'linear-30': {
703
+ type: 'GRADIENT_LINEAR',
704
+ angle: 45.0,
705
+ stops: [
706
+ {
707
+ color: '#7CDADA',
708
+ position: 0,
709
+ },
710
+ {
711
+ color: '#F697AA',
712
+ position: 1,
713
+ },
714
+ ],
715
+ },
716
+ 'linear-31': {
717
+ type: 'GRADIENT_LINEAR',
718
+ angle: 45.0,
719
+ stops: [
720
+ {
721
+ color: '#B1FF96',
722
+ position: 0,
723
+ },
724
+ {
725
+ color: '#FFADF7',
726
+ position: 1,
727
+ },
728
+ ],
729
+ },
730
+ 'linear-32': {
731
+ type: 'GRADIENT_LINEAR',
732
+ angle: 0.0,
733
+ stops: [
734
+ {
735
+ color: '#96FBC4',
736
+ position: 0,
737
+ },
738
+ {
739
+ color: '#F9F586',
740
+ position: 1,
741
+ },
742
+ ],
743
+ },
744
+ 'linear-33': {
745
+ type: 'GRADIENT_LINEAR',
746
+ angle: 45.0,
747
+ stops: [
748
+ {
749
+ color: '#4DEF8E',
750
+ position: 0,
751
+ },
752
+ {
753
+ color: '#FFEB3A',
754
+ position: 1,
755
+ },
756
+ ],
757
+ },
758
+ 'linear-34': {
759
+ type: 'GRADIENT_LINEAR',
760
+ angle: 135.0,
761
+ stops: [
762
+ {
763
+ color: '#F0FF00',
764
+ position: 0,
765
+ },
766
+ {
767
+ color: '#58CFFB',
768
+ position: 1,
769
+ },
770
+ ],
771
+ },
772
+ 'linear-35': {
773
+ type: 'GRADIENT_LINEAR',
774
+ angle: 0.0,
775
+ stops: [
776
+ {
777
+ color: '#D1FDFF',
778
+ position: 0,
779
+ },
780
+ {
781
+ color: '#FDDB92',
782
+ position: 1,
783
+ },
784
+ ],
785
+ },
786
+ 'linear-36': {
787
+ type: 'GRADIENT_LINEAR',
788
+ angle: 0.0,
789
+ stops: [
790
+ {
791
+ color: '#EBC0FD',
792
+ position: 0,
793
+ },
794
+ {
795
+ color: '#D9DED8',
796
+ position: 1,
797
+ },
798
+ ],
799
+ },
800
+ 'linear-37': {
801
+ type: 'GRADIENT_LINEAR',
802
+ angle: 45.0,
803
+ stops: [
804
+ {
805
+ color: '#FFA4F6',
806
+ position: 0,
807
+ },
808
+ {
809
+ color: '#B7DCFF',
810
+ position: 1,
811
+ },
812
+ ],
813
+ },
814
+ 'linear-38': {
815
+ type: 'GRADIENT_LINEAR',
816
+ angle: 0.0,
817
+ stops: [
818
+ {
819
+ color: '#CD9CF2',
820
+ position: 0,
821
+ },
822
+ {
823
+ color: '#F6F3FF',
824
+ position: 1,
825
+ },
826
+ ],
827
+ },
828
+ 'linear-39': {
829
+ type: 'GRADIENT_LINEAR',
830
+ angle: 315.0,
831
+ stops: [
832
+ {
833
+ color: '#F5C8F5',
834
+ position: 0,
835
+ },
836
+ {
837
+ color: '#DADDFA',
838
+ position: 0.8385,
839
+ },
840
+ ],
841
+ },
842
+ 'linear-40': {
843
+ type: 'GRADIENT_LINEAR',
844
+ angle: 0.0,
845
+ stops: [
846
+ {
847
+ color: '#E6DEE9',
848
+ position: 0,
849
+ },
850
+ {
851
+ color: '#BDC2E8',
852
+ position: 1,
853
+ },
854
+ ],
855
+ },
856
+ 'linear-41': {
857
+ type: 'GRADIENT_LINEAR',
858
+ angle: 0.0,
859
+ stops: [
860
+ {
861
+ color: '#6A85B6',
862
+ position: 0,
863
+ },
864
+ {
865
+ color: '#BAC8E0',
866
+ position: 1,
867
+ },
868
+ ],
869
+ },
870
+ 'linear-42': {
871
+ type: 'GRADIENT_LINEAR',
872
+ angle: 45.0,
873
+ stops: [
874
+ {
875
+ color: '#8B8B8B',
876
+ position: 0,
877
+ },
878
+ {
879
+ color: '#EAEAEA',
880
+ position: 1,
881
+ },
882
+ ],
883
+ },
884
+ 'linear-43': {
885
+ type: 'GRADIENT_LINEAR',
886
+ angle: 135.0,
887
+ stops: [
888
+ {
889
+ color: '#E2B0FF',
890
+ position: 0,
891
+ },
892
+ {
893
+ color: '#9F44D3',
894
+ position: 1,
895
+ },
896
+ ],
897
+ },
898
+ 'linear-44': {
899
+ type: 'GRADIENT_LINEAR',
900
+ angle: 135.0,
901
+ stops: [
902
+ {
903
+ color: '#CE9FFC',
904
+ position: 0,
905
+ },
906
+ {
907
+ color: '#7367F0',
908
+ position: 1,
909
+ },
910
+ ],
911
+ },
912
+ 'linear-45': {
913
+ type: 'GRADIENT_LINEAR',
914
+ angle: 135.0,
915
+ stops: [
916
+ {
917
+ color: '#72EDF2',
918
+ position: 0,
919
+ },
920
+ {
921
+ color: '#5151E5',
922
+ position: 1,
923
+ },
924
+ ],
925
+ },
926
+ 'linear-46': {
927
+ type: 'GRADIENT_LINEAR',
928
+ angle: 0.0,
929
+ stops: [
930
+ {
931
+ color: '#A3BDED',
932
+ position: 0,
933
+ },
934
+ {
935
+ color: '#6991C7',
936
+ position: 1,
937
+ },
938
+ ],
939
+ },
940
+ 'linear-47': {
941
+ type: 'GRADIENT_LINEAR',
942
+ angle: 0.0,
943
+ stops: [
944
+ {
945
+ color: '#FBC8D4',
946
+ position: 0,
947
+ },
948
+ {
949
+ color: '#9795F0',
950
+ position: 1,
951
+ },
952
+ ],
953
+ },
954
+ 'linear-48': {
955
+ type: 'GRADIENT_LINEAR',
956
+ angle: 0.0,
957
+ stops: [
958
+ {
959
+ color: '#A7A6CB',
960
+ position: 0,
961
+ },
962
+ {
963
+ color: '#8989BA',
964
+ position: 1,
965
+ },
966
+ ],
967
+ },
968
+ 'linear-49': {
969
+ type: 'GRADIENT_LINEAR',
970
+ angle: 0.0,
971
+ stops: [
972
+ {
973
+ color: '#D9AFD9',
974
+ position: 0,
975
+ },
976
+ {
977
+ color: '#97D9E1',
978
+ position: 1,
979
+ },
980
+ ],
981
+ },
982
+ 'linear-50': {
983
+ type: 'GRADIENT_LINEAR',
984
+ angle: 135.0,
985
+ stops: [
986
+ {
987
+ color: '#81FFEF',
988
+ position: 0,
989
+ },
990
+ {
991
+ color: '#F067B4',
992
+ position: 1,
993
+ },
994
+ ],
995
+ },
996
+ 'linear-51': {
997
+ type: 'GRADIENT_LINEAR',
998
+ angle: 135.0,
999
+ stops: [
1000
+ {
1001
+ color: '#DCB0ED',
1002
+ position: 0,
1003
+ },
1004
+ {
1005
+ color: '#9999CC',
1006
+ position: 1,
1007
+ },
1008
+ ],
1009
+ },
1010
+ 'linear-52': {
1011
+ type: 'GRADIENT_LINEAR',
1012
+ angle: 135.0,
1013
+ stops: [
1014
+ {
1015
+ color: '#FFF5C3',
1016
+ position: 0,
1017
+ },
1018
+ {
1019
+ color: '#9452A5',
1020
+ position: 1,
1021
+ },
1022
+ ],
1023
+ },
1024
+ 'linear-53': {
1025
+ type: 'GRADIENT_LINEAR',
1026
+ angle: 135.0,
1027
+ stops: [
1028
+ {
1029
+ color: '#F1CA74',
1030
+ position: 0,
1031
+ },
1032
+ {
1033
+ color: '#A64DB6',
1034
+ position: 1,
1035
+ },
1036
+ ],
1037
+ },
1038
+ 'linear-54': {
1039
+ type: 'GRADIENT_LINEAR',
1040
+ angle: 45.0,
1041
+ stops: [
1042
+ {
1043
+ color: '#4D6AD0',
1044
+ position: 0,
1045
+ },
1046
+ {
1047
+ color: '#FF9D7E',
1048
+ position: 1,
1049
+ },
1050
+ ],
1051
+ },
1052
+ 'linear-55': {
1053
+ type: 'GRADIENT_LINEAR',
1054
+ angle: 135.0,
1055
+ stops: [
1056
+ {
1057
+ color: '#FFCF71',
1058
+ position: 0,
1059
+ },
1060
+ {
1061
+ color: '#2376DD',
1062
+ position: 1,
1063
+ },
1064
+ ],
1065
+ },
1066
+ 'linear-56': {
1067
+ type: 'GRADIENT_LINEAR',
1068
+ angle: 135.0,
1069
+ stops: [
1070
+ {
1071
+ color: '#E8D07A',
1072
+ position: 0,
1073
+ },
1074
+ {
1075
+ color: '#5312D6',
1076
+ position: 1,
1077
+ },
1078
+ ],
1079
+ },
1080
+ 'linear-57': {
1081
+ type: 'GRADIENT_LINEAR',
1082
+ angle: 180.0,
1083
+ stops: [
1084
+ {
1085
+ color: '#BFD9FE',
1086
+ position: 0,
1087
+ },
1088
+ {
1089
+ color: '#DF89B5',
1090
+ position: 1,
1091
+ },
1092
+ ],
1093
+ },
1094
+ 'linear-58': {
1095
+ type: 'GRADIENT_LINEAR',
1096
+ angle: 0.0,
1097
+ stops: [
1098
+ {
1099
+ color: '#FA71CD',
1100
+ position: 0,
1101
+ },
1102
+ {
1103
+ color: '#C471F5',
1104
+ position: 1,
1105
+ },
1106
+ ],
1107
+ },
1108
+ 'linear-59': {
1109
+ type: 'GRADIENT_LINEAR',
1110
+ angle: 135.0,
1111
+ stops: [
1112
+ {
1113
+ color: '#43CBFF',
1114
+ position: 0,
1115
+ },
1116
+ {
1117
+ color: '#9708CC',
1118
+ position: 1,
1119
+ },
1120
+ ],
1121
+ },
1122
+ 'linear-60': {
1123
+ type: 'GRADIENT_LINEAR',
1124
+ angle: 180.0,
1125
+ stops: [
1126
+ {
1127
+ color: '#7579FF',
1128
+ position: 0,
1129
+ },
1130
+ {
1131
+ color: '#B224EF',
1132
+ position: 1,
1133
+ },
1134
+ ],
1135
+ },
1136
+ 'linear-61': {
1137
+ type: 'GRADIENT_LINEAR',
1138
+ angle: 45.0,
1139
+ stops: [
1140
+ {
1141
+ color: '#AD00FE',
1142
+ position: 0,
1143
+ },
1144
+ {
1145
+ color: '#00E0EE',
1146
+ position: 1,
1147
+ },
1148
+ ],
1149
+ },
1150
+ 'linear-62': {
1151
+ type: 'GRADIENT_LINEAR',
1152
+ angle: 135.0,
1153
+ stops: [
1154
+ {
1155
+ color: '#89F7FE',
1156
+ position: 0,
1157
+ },
1158
+ {
1159
+ color: '#66A6FF',
1160
+ position: 1,
1161
+ },
1162
+ ],
1163
+ },
1164
+ 'linear-63': {
1165
+ type: 'GRADIENT_LINEAR',
1166
+ angle: 0.0,
1167
+ stops: [
1168
+ {
1169
+ color: '#009EFD',
1170
+ position: 0,
1171
+ },
1172
+ {
1173
+ color: '#2AF598',
1174
+ position: 1,
1175
+ },
1176
+ ],
1177
+ },
1178
+ 'linear-64': {
1179
+ type: 'GRADIENT_LINEAR',
1180
+ angle: 45.0,
1181
+ stops: [
1182
+ {
1183
+ color: '#FFB800',
1184
+ position: 0,
1185
+ },
1186
+ {
1187
+ color: '#FFF500',
1188
+ position: 1,
1189
+ },
1190
+ ],
1191
+ },
1192
+ 'linear-65': {
1193
+ type: 'GRADIENT_LINEAR',
1194
+ angle: 135.0,
1195
+ stops: [
1196
+ {
1197
+ color: '#FFA8A8',
1198
+ position: 0,
1199
+ },
1200
+ {
1201
+ color: '#FCFF00',
1202
+ position: 1,
1203
+ },
1204
+ ],
1205
+ },
1206
+ 'linear-66': {
1207
+ type: 'GRADIENT_LINEAR',
1208
+ angle: 45.0,
1209
+ stops: [
1210
+ {
1211
+ color: '#FF7A00',
1212
+ position: 0,
1213
+ },
1214
+ {
1215
+ color: '#FFD439',
1216
+ position: 1,
1217
+ },
1218
+ ],
1219
+ },
1220
+ 'linear-67': {
1221
+ type: 'GRADIENT_LINEAR',
1222
+ angle: 135.0,
1223
+ stops: [
1224
+ {
1225
+ color: '#FFD3A5',
1226
+ position: 0,
1227
+ },
1228
+ {
1229
+ color: '#FD6585',
1230
+ position: 1,
1231
+ },
1232
+ ],
1233
+ },
1234
+ 'linear-68': {
1235
+ type: 'GRADIENT_LINEAR',
1236
+ angle: 180.0,
1237
+ stops: [
1238
+ {
1239
+ color: '#F9D423',
1240
+ position: 0,
1241
+ },
1242
+ {
1243
+ color: '#E14FAD',
1244
+ position: 1,
1245
+ },
1246
+ ],
1247
+ },
1248
+ 'linear-69': {
1249
+ type: 'GRADIENT_LINEAR',
1250
+ angle: 135.0,
1251
+ stops: [
1252
+ {
1253
+ color: '#F74FAC',
1254
+ position: 0,
1255
+ },
1256
+ {
1257
+ color: '#FCB24F',
1258
+ position: 1,
1259
+ },
1260
+ ],
1261
+ },
1262
+ 'linear-70': {
1263
+ type: 'GRADIENT_LINEAR',
1264
+ angle: 135.0,
1265
+ stops: [
1266
+ {
1267
+ color: '#F49062',
1268
+ position: 0,
1269
+ },
1270
+ {
1271
+ color: '#FD371F',
1272
+ position: 1,
1273
+ },
1274
+ ],
1275
+ },
1276
+ 'linear-71': {
1277
+ type: 'GRADIENT_LINEAR',
1278
+ angle: 45.0,
1279
+ stops: [
1280
+ {
1281
+ color: '#FF6C6C',
1282
+ position: 0,
1283
+ },
1284
+ {
1285
+ color: '#DD7BFF',
1286
+ position: 1,
1287
+ },
1288
+ ],
1289
+ },
1290
+ 'linear-72': {
1291
+ type: 'GRADIENT_LINEAR',
1292
+ angle: 135.0,
1293
+ stops: [
1294
+ {
1295
+ color: '#F97794',
1296
+ position: 0,
1297
+ },
1298
+ {
1299
+ color: '#623AA2',
1300
+ position: 1,
1301
+ },
1302
+ ],
1303
+ },
1304
+ 'linear-73': {
1305
+ type: 'GRADIENT_LINEAR',
1306
+ angle: 180.0,
1307
+ stops: [
1308
+ {
1309
+ color: '#C569CF',
1310
+ position: 0,
1311
+ },
1312
+ {
1313
+ color: '#EE609C',
1314
+ position: 1,
1315
+ },
1316
+ ],
1317
+ },
1318
+ 'linear-74': {
1319
+ type: 'GRADIENT_LINEAR',
1320
+ angle: 0.0,
1321
+ stops: [
1322
+ {
1323
+ color: '#C7EAFD',
1324
+ position: 0,
1325
+ },
1326
+ {
1327
+ color: '#E8198B',
1328
+ position: 1,
1329
+ },
1330
+ ],
1331
+ },
1332
+ 'linear-75': {
1333
+ type: 'GRADIENT_LINEAR',
1334
+ angle: 135.0,
1335
+ stops: [
1336
+ {
1337
+ color: '#F093FB',
1338
+ position: 0,
1339
+ },
1340
+ {
1341
+ color: '#F5576C',
1342
+ position: 1,
1343
+ },
1344
+ ],
1345
+ },
1346
+ 'linear-76': {
1347
+ type: 'GRADIENT_LINEAR',
1348
+ angle: 135.0,
1349
+ stops: [
1350
+ {
1351
+ color: '#F6CEEC',
1352
+ position: 0,
1353
+ },
1354
+ {
1355
+ color: '#D939CD',
1356
+ position: 1,
1357
+ },
1358
+ ],
1359
+ },
1360
+ 'linear-77': {
1361
+ type: 'GRADIENT_LINEAR',
1362
+ angle: 135.0,
1363
+ stops: [
1364
+ {
1365
+ color: '#EE9AE5',
1366
+ position: 0,
1367
+ },
1368
+ {
1369
+ color: '#5961F9',
1370
+ position: 1,
1371
+ },
1372
+ ],
1373
+ },
1374
+ 'linear-78': {
1375
+ type: 'GRADIENT_LINEAR',
1376
+ angle: 270.0,
1377
+ stops: [
1378
+ {
1379
+ color: '#6A11CB',
1380
+ position: 0,
1381
+ },
1382
+ {
1383
+ color: '#2575FC',
1384
+ position: 1,
1385
+ },
1386
+ ],
1387
+ },
1388
+ 'linear-79': {
1389
+ type: 'GRADIENT_LINEAR',
1390
+ angle: 45.0,
1391
+ stops: [
1392
+ {
1393
+ color: '#0017E4',
1394
+ position: 0,
1395
+ },
1396
+ {
1397
+ color: '#3793FF',
1398
+ position: 1,
1399
+ },
1400
+ ],
1401
+ },
1402
+ 'linear-80': {
1403
+ type: 'GRADIENT_LINEAR',
1404
+ angle: 0.0,
1405
+ stops: [
1406
+ {
1407
+ color: '#00C6FB',
1408
+ position: 0,
1409
+ },
1410
+ {
1411
+ color: '#005BEA',
1412
+ position: 1,
1413
+ },
1414
+ ],
1415
+ },
1416
+ 'linear-81': {
1417
+ type: 'GRADIENT_LINEAR',
1418
+ angle: 45.0,
1419
+ stops: [
1420
+ {
1421
+ color: '#4B73FF',
1422
+ position: 0,
1423
+ },
1424
+ {
1425
+ color: '#7CF7FF',
1426
+ position: 1,
1427
+ },
1428
+ ],
1429
+ },
1430
+ 'linear-82': {
1431
+ type: 'GRADIENT_LINEAR',
1432
+ angle: 135.0,
1433
+ stops: [
1434
+ {
1435
+ color: '#5EFCE8',
1436
+ position: 0,
1437
+ },
1438
+ {
1439
+ color: '#736EFE',
1440
+ position: 1,
1441
+ },
1442
+ ],
1443
+ },
1444
+ 'linear-83': {
1445
+ type: 'GRADIENT_LINEAR',
1446
+ angle: 0.0,
1447
+ stops: [
1448
+ {
1449
+ color: '#7028E4',
1450
+ position: 0,
1451
+ },
1452
+ {
1453
+ color: '#E5B2CA',
1454
+ position: 1,
1455
+ },
1456
+ ],
1457
+ },
1458
+ 'linear-84': {
1459
+ type: 'GRADIENT_LINEAR',
1460
+ angle: 90.0,
1461
+ stops: [
1462
+ {
1463
+ color: '#7873F5',
1464
+ position: 0,
1465
+ },
1466
+ {
1467
+ color: '#EC77AB',
1468
+ position: 1,
1469
+ },
1470
+ ],
1471
+ },
1472
+ 'linear-85': {
1473
+ type: 'GRADIENT_LINEAR',
1474
+ angle: 135.0,
1475
+ stops: [
1476
+ {
1477
+ color: '#B01EFF',
1478
+ position: 0,
1479
+ },
1480
+ {
1481
+ color: '#E1467C',
1482
+ position: 1,
1483
+ },
1484
+ ],
1485
+ },
1486
+ 'linear-86': {
1487
+ type: 'GRADIENT_LINEAR',
1488
+ angle: 45.0,
1489
+ stops: [
1490
+ {
1491
+ color: '#D079EE',
1492
+ position: 0,
1493
+ },
1494
+ {
1495
+ color: '#8A88FB',
1496
+ position: 1,
1497
+ },
1498
+ ],
1499
+ },
1500
+ 'linear-87': {
1501
+ type: 'GRADIENT_LINEAR',
1502
+ angle: 135.0,
1503
+ stops: [
1504
+ {
1505
+ color: '#C99FFF',
1506
+ position: 0,
1507
+ },
1508
+ {
1509
+ color: '#981ED2',
1510
+ position: 1,
1511
+ },
1512
+ ],
1513
+ },
1514
+ 'linear-88': {
1515
+ type: 'GRADIENT_LINEAR',
1516
+ angle: 0.0,
1517
+ stops: [
1518
+ {
1519
+ color: '#9B23EA',
1520
+ position: 0,
1521
+ },
1522
+ {
1523
+ color: '#5F72BD',
1524
+ position: 1,
1525
+ },
1526
+ ],
1527
+ },
1528
+ 'linear-89': {
1529
+ type: 'GRADIENT_LINEAR',
1530
+ angle: 135.0,
1531
+ stops: [
1532
+ {
1533
+ color: '#B39FFF',
1534
+ position: 0,
1535
+ },
1536
+ {
1537
+ color: '#6A1ED2',
1538
+ position: 1,
1539
+ },
1540
+ ],
1541
+ },
1542
+ 'linear-90': {
1543
+ type: 'GRADIENT_LINEAR',
1544
+ angle: 45.0,
1545
+ stops: [
1546
+ {
1547
+ color: '#4300B1',
1548
+ position: 0,
1549
+ },
1550
+ {
1551
+ color: '#A531DC',
1552
+ position: 1,
1553
+ },
1554
+ ],
1555
+ },
1556
+ 'linear-91': {
1557
+ type: 'GRADIENT_LINEAR',
1558
+ angle: 315.0,
1559
+ stops: [
1560
+ {
1561
+ color: '#764BA2',
1562
+ position: 0,
1563
+ },
1564
+ {
1565
+ color: '#667EEA',
1566
+ position: 1,
1567
+ },
1568
+ ],
1569
+ },
1570
+ };