@sragatiping/cuboid 0.1.0 → 0.1.4
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.
- package/dist/components/ApiResponseViewer/ApiResponseViewer.d.ts +24 -0
- package/dist/components/ApiResponseViewer/ApiResponseViewer.stories.d.ts +13 -0
- package/dist/components/ApiResponseViewer/index.d.ts +3 -0
- package/dist/components/ApiResponseViewer/status.d.ts +8 -0
- package/dist/components/CodeBlock/CodeBlock.d.ts +18 -0
- package/dist/components/CodeBlock/CodeBlock.stories.d.ts +12 -0
- package/dist/components/CodeBlock/CodeSurface.d.ts +48 -0
- package/dist/components/CodeBlock/CodeSurface.stories.d.ts +15 -0
- package/dist/components/CodeBlock/CodeViewingDocs.d.ts +7 -0
- package/dist/components/CodeBlock/JsonCodeView.d.ts +17 -0
- package/dist/components/CodeBlock/JsonCodeView.stories.d.ts +19 -0
- package/dist/components/CodeBlock/__fixtures__/dev-server-diagnostics.d.ts +145 -0
- package/dist/components/CodeBlock/__fixtures__/source-samples.d.ts +10 -0
- package/dist/components/CodeBlock/constants.d.ts +11 -0
- package/dist/components/CodeBlock/highlight/css.d.ts +1 -0
- package/dist/components/CodeBlock/highlight/html.d.ts +1 -0
- package/dist/components/CodeBlock/highlight/index.d.ts +5 -0
- package/dist/components/CodeBlock/highlight/javascript.d.ts +5 -0
- package/dist/components/CodeBlock/highlight/shared.d.ts +15 -0
- package/dist/components/CodeBlock/index.d.ts +14 -0
- package/dist/components/CodeBlock/syntax.d.ts +37 -0
- package/dist/components/{CodeSnippet → CodeBlock}/tokenizer.d.ts +0 -5
- package/dist/components/CodeBlock/types.d.ts +27 -0
- package/dist/components/CodeSnippet/CodeSnippet.d.ts +9 -50
- package/dist/components/JsonViewer/JsonViewer.d.ts +1 -1
- package/dist/components/core/Box/Box.d.ts +24 -0
- package/dist/components/core/Box/Box.stories.d.ts +9 -0
- package/dist/components/core/Box/boxTypes.d.ts +6 -0
- package/dist/components/core/Box/index.d.ts +2 -0
- package/dist/components/core/Callout/Callout.d.ts +17 -0
- package/dist/components/core/Callout/Callout.stories.d.ts +10 -0
- package/dist/components/core/Callout/index.d.ts +2 -0
- package/dist/components/core/Container/Container.d.ts +23 -0
- package/dist/components/core/Container/Container.stories.d.ts +10 -0
- package/dist/components/core/Container/index.d.ts +2 -0
- package/dist/components/core/Divider/Divider.d.ts +17 -0
- package/dist/components/core/Divider/Divider.stories.d.ts +9 -0
- package/dist/components/core/Divider/index.d.ts +2 -0
- package/dist/components/core/Highlight/Highlight.d.ts +16 -0
- package/dist/components/core/Highlight/Highlight.stories.d.ts +8 -0
- package/dist/components/core/Highlight/index.d.ts +2 -0
- package/dist/components/core/Link/Link.d.ts +10 -5
- package/dist/components/core/Pill/Pill.d.ts +12 -6
- package/dist/components/core/Pill/Pill.stories.d.ts +3 -0
- package/dist/components/core/Pill/index.d.ts +1 -1
- package/dist/components/core/Popover/Popover.d.ts +1 -1
- package/dist/components/core/Stack/Stack.d.ts +12 -21
- package/dist/components/core/Stack/index.d.ts +1 -1
- package/dist/components/core/Text/Text.d.ts +7 -7
- package/dist/components/core/index.d.ts +11 -1
- package/dist/index.cjs.js +7 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +20 -3
- package/dist/index.es.js +4029 -3342
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/theme/globalColor.d.ts +25 -0
- package/dist/theme/output/base.json.d.ts +28 -56
- package/dist/theme/output/theme.json.d.ts +579 -1016
- package/dist/theme/themeCubeOverride.d.ts +11 -0
- package/dist/theme/types.d.ts +64 -19
- package/package.json +9 -4
- package/src/theme/output/components.css +1945 -0
- package/src/theme/output/theme.css +247 -0
- package/dist/components/CodeSnippet/CodeSnippet.stories.d.ts +0 -17
- package/dist/components/CodeSnippet/__fixtures__/device-profile-report.d.ts +0 -422
- package/dist/components/JsonGraph/DeviceProfileReport.stories.d.ts +0 -11
|
@@ -99,18 +99,6 @@ declare const _default: {
|
|
|
99
99
|
"fontSize": "1rem",
|
|
100
100
|
"lineHeight": "1.5rem"
|
|
101
101
|
}
|
|
102
|
-
},
|
|
103
|
-
"pill": {
|
|
104
|
-
"sm": {
|
|
105
|
-
"fontSize": "0.75rem",
|
|
106
|
-
"lineHeight": "0.9375rem",
|
|
107
|
-
"fontWeight": 400
|
|
108
|
-
},
|
|
109
|
-
"md": {
|
|
110
|
-
"fontSize": "0.75rem",
|
|
111
|
-
"lineHeight": "1.125rem",
|
|
112
|
-
"fontWeight": 400
|
|
113
|
-
}
|
|
114
102
|
}
|
|
115
103
|
},
|
|
116
104
|
"colors": {
|
|
@@ -119,23 +107,23 @@ declare const _default: {
|
|
|
119
107
|
"default": "#FFFFFF",
|
|
120
108
|
"muted": "#F9F9F8",
|
|
121
109
|
"inset": "#F4F4F2",
|
|
122
|
-
"emphasis": "#
|
|
110
|
+
"emphasis": "#474746",
|
|
123
111
|
"disabled": "#F4F4F2",
|
|
124
112
|
"transparent": "transparent",
|
|
125
|
-
"inverse": "#
|
|
113
|
+
"inverse": "#474746",
|
|
126
114
|
"neutral": {
|
|
127
115
|
"muted": "#EFEEEA",
|
|
128
|
-
"emphasis": "#
|
|
116
|
+
"emphasis": "#6F6F6D"
|
|
129
117
|
}
|
|
130
118
|
},
|
|
131
119
|
"foreground": {
|
|
132
|
-
"default": "#
|
|
133
|
-
"muted": "#
|
|
120
|
+
"default": "#6F6F6D",
|
|
121
|
+
"muted": "#888783",
|
|
134
122
|
"onEmphasis": "#FFFFFF",
|
|
135
|
-
"disabled": "#
|
|
123
|
+
"disabled": "#D8D7D4",
|
|
136
124
|
"link": "#525252",
|
|
137
125
|
"white": "#FFFFFF",
|
|
138
|
-
"neutral": "#
|
|
126
|
+
"neutral": "#6F6F6D"
|
|
139
127
|
},
|
|
140
128
|
"border": {
|
|
141
129
|
"default": "#E2E1DD",
|
|
@@ -150,14 +138,14 @@ declare const _default: {
|
|
|
150
138
|
}
|
|
151
139
|
},
|
|
152
140
|
"syntax": {
|
|
153
|
-
"comment": "#
|
|
154
|
-
"key": "#
|
|
155
|
-
"constant": "#
|
|
141
|
+
"comment": "#888783",
|
|
142
|
+
"key": "#6F6F6D",
|
|
143
|
+
"constant": "#3a80f9 ",
|
|
156
144
|
"constantOtherReferenceLink": "#0a3069",
|
|
157
|
-
"entity": "#
|
|
158
|
-
"entityTag": "#
|
|
159
|
-
"keyword": "#
|
|
160
|
-
"string": "#
|
|
145
|
+
"entity": "#d22799",
|
|
146
|
+
"entityTag": "#d22799",
|
|
147
|
+
"keyword": "#EF6262",
|
|
148
|
+
"string": "#EF6262",
|
|
161
149
|
"stringRegexp": "#A2D794",
|
|
162
150
|
"variable": "#FF8635",
|
|
163
151
|
"brackethighlighterAngle": "#ABA9A5",
|
|
@@ -177,12 +165,18 @@ declare const _default: {
|
|
|
177
165
|
"markupChangedBg": "#FEE8D8",
|
|
178
166
|
"markupChangedText": "#FF8635",
|
|
179
167
|
"nullLiteral": "#E2E1DD",
|
|
180
|
-
"booleanLiteral": "#
|
|
168
|
+
"booleanLiteral": "#9035BD",
|
|
169
|
+
"numberLiteral": "#3a80f9 ",
|
|
181
170
|
"bracket": "#E01280",
|
|
182
|
-
"
|
|
183
|
-
"
|
|
171
|
+
"bracketNested": "#9035BD",
|
|
172
|
+
"stringUrl": "#6565FA",
|
|
173
|
+
"stringEmail": "#6565FA",
|
|
184
174
|
"stringUuid": "#D8D7D4",
|
|
185
|
-
"rowHoverBg": "#
|
|
175
|
+
"rowHoverBg": "#F9F9F8",
|
|
176
|
+
"collapsedRowBg": "#FFFFFF",
|
|
177
|
+
"watchMark": "#518ff8",
|
|
178
|
+
"watchMarkHover": "#518ff8",
|
|
179
|
+
"watchRowBg": "#F4F8FF"
|
|
186
180
|
}
|
|
187
181
|
}
|
|
188
182
|
},
|
|
@@ -220,6 +214,32 @@ declare const _default: {
|
|
|
220
214
|
"xxl": "3rem"
|
|
221
215
|
}
|
|
222
216
|
},
|
|
217
|
+
"layout": {
|
|
218
|
+
"pageMaxWidth": "56rem",
|
|
219
|
+
"contentMaxWidth": "40rem",
|
|
220
|
+
"sectionLabelWidth": "clamp(6.5rem, 25%, 10rem)",
|
|
221
|
+
"pagePaddingInline": "1.25rem"
|
|
222
|
+
},
|
|
223
|
+
"container": {
|
|
224
|
+
"panelMinWidth": "15rem",
|
|
225
|
+
"sheetWidthSm": "20rem",
|
|
226
|
+
"sheetWidthMd": "25rem",
|
|
227
|
+
"sheetWidthLg": "35rem",
|
|
228
|
+
"sidebarWidthSm": "15rem",
|
|
229
|
+
"sidebarWidthMd": "17rem",
|
|
230
|
+
"sidebarWidthLg": "20rem",
|
|
231
|
+
"sidebarMinWidth": "12.5rem",
|
|
232
|
+
"sidebarMaxWidth": "30rem",
|
|
233
|
+
"tooltipMaxWidth": "15rem",
|
|
234
|
+
"tooltipMaxWidthSingleLine": "7.5rem",
|
|
235
|
+
"popoverMinWidth": "10rem",
|
|
236
|
+
"popoverMaxWidth": "20rem"
|
|
237
|
+
},
|
|
238
|
+
"highlight": {
|
|
239
|
+
"paddingInline": "0.125rem",
|
|
240
|
+
"paddingBlock": "0",
|
|
241
|
+
"borderRadius": "0.125rem"
|
|
242
|
+
},
|
|
223
243
|
"borderRadius": {
|
|
224
244
|
"sm": "0.25rem",
|
|
225
245
|
"md": "0.5rem",
|
|
@@ -291,18 +311,10 @@ declare const _default: {
|
|
|
291
311
|
"boxShadow": "0 1px 2px rgba(68, 68, 69, 0.08)"
|
|
292
312
|
},
|
|
293
313
|
"pill": {
|
|
294
|
-
"
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
"gap": "0.25rem"
|
|
299
|
-
},
|
|
300
|
-
"md": {
|
|
301
|
-
"paddingInline": "0.75rem",
|
|
302
|
-
"paddingBlock": "0.25rem",
|
|
303
|
-
"borderRadius": "0.375rem",
|
|
304
|
-
"gap": "0.375rem"
|
|
305
|
-
}
|
|
314
|
+
"paddingInline": "0.375rem",
|
|
315
|
+
"paddingBlock": "0.1875rem",
|
|
316
|
+
"borderRadius": "0.25rem",
|
|
317
|
+
"gap": "0.25rem"
|
|
306
318
|
},
|
|
307
319
|
"iconButton": {
|
|
308
320
|
"extraSmall": {
|
|
@@ -437,7 +449,7 @@ declare const _default: {
|
|
|
437
449
|
"rest": "#FFFFFF",
|
|
438
450
|
"hover": "#FFFFFF",
|
|
439
451
|
"pressed": "#FFFFFF",
|
|
440
|
-
"disabled": "#
|
|
452
|
+
"disabled": "#D8D7D4"
|
|
441
453
|
}
|
|
442
454
|
},
|
|
443
455
|
"buttonSecondary": {
|
|
@@ -454,10 +466,10 @@ declare const _default: {
|
|
|
454
466
|
"disabled": "#EFEEEA"
|
|
455
467
|
},
|
|
456
468
|
"fgColor": {
|
|
457
|
-
"rest": "#
|
|
458
|
-
"hover": "#
|
|
459
|
-
"pressed": "#
|
|
460
|
-
"disabled": "#
|
|
469
|
+
"rest": "#6F6F6D",
|
|
470
|
+
"hover": "#6F6F6D",
|
|
471
|
+
"pressed": "#ABA9A5",
|
|
472
|
+
"disabled": "#D8D7D4"
|
|
461
473
|
}
|
|
462
474
|
},
|
|
463
475
|
"buttonGhost": {
|
|
@@ -474,17 +486,17 @@ declare const _default: {
|
|
|
474
486
|
"disabled": "#ffffff00"
|
|
475
487
|
},
|
|
476
488
|
"fgColor": {
|
|
477
|
-
"rest": "#
|
|
478
|
-
"hover": "#
|
|
479
|
-
"pressed": "#
|
|
480
|
-
"disabled": "#
|
|
489
|
+
"rest": "#888783",
|
|
490
|
+
"hover": "#888783",
|
|
491
|
+
"pressed": "#6F6F6D",
|
|
492
|
+
"disabled": "#D8D7D4"
|
|
481
493
|
}
|
|
482
494
|
},
|
|
483
495
|
"buttonDanger": {
|
|
484
496
|
"bgColor": {
|
|
485
|
-
"rest": "#
|
|
486
|
-
"hover": "#
|
|
487
|
-
"pressed": "#
|
|
497
|
+
"rest": "#E74646",
|
|
498
|
+
"hover": "#DA2222",
|
|
499
|
+
"pressed": "#DA2222",
|
|
488
500
|
"disabled": "#EFEEEA"
|
|
489
501
|
},
|
|
490
502
|
"borderColor": {
|
|
@@ -497,7 +509,7 @@ declare const _default: {
|
|
|
497
509
|
"rest": "#FFFFFF",
|
|
498
510
|
"hover": "#FFFFFF",
|
|
499
511
|
"pressed": "#FFFFFF",
|
|
500
|
-
"disabled": "#
|
|
512
|
+
"disabled": "#D8D7D4"
|
|
501
513
|
}
|
|
502
514
|
},
|
|
503
515
|
"buttonRounded": {
|
|
@@ -514,10 +526,10 @@ declare const _default: {
|
|
|
514
526
|
"disabled": "#ffffff00"
|
|
515
527
|
},
|
|
516
528
|
"fgColor": {
|
|
517
|
-
"rest": "#
|
|
518
|
-
"hover": "#
|
|
519
|
-
"pressed": "#
|
|
520
|
-
"disabled": "#
|
|
529
|
+
"rest": "#6F6F6D",
|
|
530
|
+
"hover": "#6F6F6D",
|
|
531
|
+
"pressed": "#ABA9A5",
|
|
532
|
+
"disabled": "#D8D7D4"
|
|
521
533
|
}
|
|
522
534
|
},
|
|
523
535
|
"linkColors": {
|
|
@@ -530,1024 +542,584 @@ declare const _default: {
|
|
|
530
542
|
"hover": "#ABA9A5"
|
|
531
543
|
}
|
|
532
544
|
},
|
|
545
|
+
"highlightColors": {
|
|
546
|
+
"none": {
|
|
547
|
+
"bgColor": "#ffffff00",
|
|
548
|
+
"fgColor": "#ABA9A5"
|
|
549
|
+
},
|
|
550
|
+
"neutral": {
|
|
551
|
+
"bgColor": "#F4F4F2",
|
|
552
|
+
"fgColor": "#888783"
|
|
553
|
+
},
|
|
554
|
+
"green": {
|
|
555
|
+
"bgColor": "#F0F9EF",
|
|
556
|
+
"fgColor": "#888783"
|
|
557
|
+
},
|
|
558
|
+
"blue": {
|
|
559
|
+
"bgColor": "#EEF4FF",
|
|
560
|
+
"fgColor": "#888783"
|
|
561
|
+
},
|
|
562
|
+
"yellow": {
|
|
563
|
+
"bgColor": "#FFF0CD",
|
|
564
|
+
"fgColor": "#888783"
|
|
565
|
+
},
|
|
566
|
+
"orange": {
|
|
567
|
+
"bgColor": "#FEE8D8",
|
|
568
|
+
"fgColor": "#888783"
|
|
569
|
+
},
|
|
570
|
+
"red": {
|
|
571
|
+
"bgColor": "#FFD9D5",
|
|
572
|
+
"fgColor": "#888783"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
533
575
|
"pillColors": {
|
|
576
|
+
"blue": {
|
|
577
|
+
"bold": {
|
|
578
|
+
"filled": {
|
|
579
|
+
"bgColor": "#3a80f9 ",
|
|
580
|
+
"borderColor": "#ffffff00",
|
|
581
|
+
"fgColor": "#FFFFFF"
|
|
582
|
+
},
|
|
583
|
+
"bordered": {
|
|
584
|
+
"bgColor": "#3a80f9 ",
|
|
585
|
+
"borderColor": "#1d5ece",
|
|
586
|
+
"fgColor": "#FFFFFF"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"extraBold": {
|
|
590
|
+
"filled": {
|
|
591
|
+
"bgColor": "#1d5ece",
|
|
592
|
+
"borderColor": "#ffffff00",
|
|
593
|
+
"fgColor": "#FFFFFF"
|
|
594
|
+
},
|
|
595
|
+
"bordered": {
|
|
596
|
+
"bgColor": "#236ae5 ",
|
|
597
|
+
"borderColor": "#1d5ece",
|
|
598
|
+
"fgColor": "#FFFFFF"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"extralight": {
|
|
602
|
+
"filled": {
|
|
603
|
+
"bgColor": "#EEF4FF",
|
|
604
|
+
"borderColor": "#ffffff00",
|
|
605
|
+
"fgColor": "#1d5ece"
|
|
606
|
+
},
|
|
607
|
+
"bordered": {
|
|
608
|
+
"bgColor": "#EAF2FF",
|
|
609
|
+
"borderColor": "#C4DAFF",
|
|
610
|
+
"fgColor": "#1d5ece"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"light": {
|
|
614
|
+
"filled": {
|
|
615
|
+
"bgColor": "#DFEAFD",
|
|
616
|
+
"borderColor": "#ffffff00",
|
|
617
|
+
"fgColor": "#1d5ece"
|
|
618
|
+
},
|
|
619
|
+
"bordered": {
|
|
620
|
+
"bgColor": "#DFEAFD",
|
|
621
|
+
"borderColor": "#518ff8",
|
|
622
|
+
"fgColor": "#1d5ece"
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
},
|
|
534
626
|
"gray": {
|
|
535
627
|
"bold": {
|
|
536
628
|
"filled": {
|
|
537
|
-
"bgColor":
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
"pressed": "#D8D7D4",
|
|
541
|
-
"disabled": "#F4F4F2"
|
|
542
|
-
},
|
|
543
|
-
"borderColor": {
|
|
544
|
-
"rest": "#ffffff00",
|
|
545
|
-
"hover": "#ffffff00",
|
|
546
|
-
"pressed": "#ffffff00",
|
|
547
|
-
"disabled": "#ffffff00"
|
|
548
|
-
},
|
|
549
|
-
"fgColor": {
|
|
550
|
-
"rest": "#2D2D2D",
|
|
551
|
-
"hover": "#2D2D2D",
|
|
552
|
-
"pressed": "#474746",
|
|
553
|
-
"disabled": "#888783"
|
|
554
|
-
}
|
|
629
|
+
"bgColor": "#888783",
|
|
630
|
+
"borderColor": "#ffffff00",
|
|
631
|
+
"fgColor": "#FFFFFF"
|
|
555
632
|
},
|
|
556
633
|
"bordered": {
|
|
557
|
-
"bgColor":
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
"pressed": "#EFEEEA",
|
|
561
|
-
"disabled": "#F4F4F2"
|
|
562
|
-
},
|
|
563
|
-
"borderColor": {
|
|
564
|
-
"rest": "#D8D7D4",
|
|
565
|
-
"hover": "#D8D7D4",
|
|
566
|
-
"pressed": "#D8D7D4",
|
|
567
|
-
"disabled": "#EFEEEA"
|
|
568
|
-
},
|
|
569
|
-
"fgColor": {
|
|
570
|
-
"rest": "#2D2D2D",
|
|
571
|
-
"hover": "#2D2D2D",
|
|
572
|
-
"pressed": "#474746",
|
|
573
|
-
"disabled": "#888783"
|
|
574
|
-
}
|
|
634
|
+
"bgColor": "#6F6F6D",
|
|
635
|
+
"borderColor": "#474746",
|
|
636
|
+
"fgColor": "#FFFFFF"
|
|
575
637
|
}
|
|
576
638
|
},
|
|
577
639
|
"extraBold": {
|
|
578
640
|
"filled": {
|
|
579
|
-
"bgColor":
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
"pressed": "#3A3A39",
|
|
583
|
-
"disabled": "#F4F4F2"
|
|
584
|
-
},
|
|
585
|
-
"borderColor": {
|
|
586
|
-
"rest": "#ffffff00",
|
|
587
|
-
"hover": "#ffffff00",
|
|
588
|
-
"pressed": "#ffffff00",
|
|
589
|
-
"disabled": "#ffffff00"
|
|
590
|
-
},
|
|
591
|
-
"fgColor": {
|
|
592
|
-
"rest": "#FFFFFF",
|
|
593
|
-
"hover": "#FFFFFF",
|
|
594
|
-
"pressed": "#FFFFFF",
|
|
595
|
-
"disabled": "#888783"
|
|
596
|
-
}
|
|
641
|
+
"bgColor": "#474746",
|
|
642
|
+
"borderColor": "#ffffff00",
|
|
643
|
+
"fgColor": "#FFFFFF"
|
|
597
644
|
},
|
|
598
645
|
"bordered": {
|
|
599
|
-
"bgColor":
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
"pressed": "#F4F4F2",
|
|
603
|
-
"disabled": "#F4F4F2"
|
|
604
|
-
},
|
|
605
|
-
"borderColor": {
|
|
606
|
-
"rest": "#474746",
|
|
607
|
-
"hover": "#3A3A39",
|
|
608
|
-
"pressed": "#3A3A39",
|
|
609
|
-
"disabled": "#EFEEEA"
|
|
610
|
-
},
|
|
611
|
-
"fgColor": {
|
|
612
|
-
"rest": "#2D2D2D",
|
|
613
|
-
"hover": "#2D2D2D",
|
|
614
|
-
"pressed": "#474746",
|
|
615
|
-
"disabled": "#888783"
|
|
616
|
-
}
|
|
646
|
+
"bgColor": "#474746",
|
|
647
|
+
"borderColor": "#474746",
|
|
648
|
+
"fgColor": "#FFFFFF"
|
|
617
649
|
}
|
|
618
650
|
},
|
|
619
651
|
"extralight": {
|
|
620
652
|
"filled": {
|
|
621
|
-
"bgColor":
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
"pressed": "#F4F4F2",
|
|
625
|
-
"disabled": "#F4F4F2"
|
|
626
|
-
},
|
|
627
|
-
"borderColor": {
|
|
628
|
-
"rest": "#ffffff00",
|
|
629
|
-
"hover": "#ffffff00",
|
|
630
|
-
"pressed": "#ffffff00",
|
|
631
|
-
"disabled": "#ffffff00"
|
|
632
|
-
},
|
|
633
|
-
"fgColor": {
|
|
634
|
-
"rest": "#474746",
|
|
635
|
-
"hover": "#474746",
|
|
636
|
-
"pressed": "#6F6F6D",
|
|
637
|
-
"disabled": "#888783"
|
|
638
|
-
}
|
|
653
|
+
"bgColor": "#FFFFFF",
|
|
654
|
+
"borderColor": "#ffffff00",
|
|
655
|
+
"fgColor": "#6F6F6D"
|
|
639
656
|
},
|
|
640
657
|
"bordered": {
|
|
641
|
-
"bgColor":
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
"pressed": "#F4F4F2",
|
|
645
|
-
"disabled": "#F4F4F2"
|
|
646
|
-
},
|
|
647
|
-
"borderColor": {
|
|
648
|
-
"rest": "#D8D7D4",
|
|
649
|
-
"hover": "#D8D7D4",
|
|
650
|
-
"pressed": "#D8D7D4",
|
|
651
|
-
"disabled": "#EFEEEA"
|
|
652
|
-
},
|
|
653
|
-
"fgColor": {
|
|
654
|
-
"rest": "#474746",
|
|
655
|
-
"hover": "#474746",
|
|
656
|
-
"pressed": "#6F6F6D",
|
|
657
|
-
"disabled": "#888783"
|
|
658
|
-
}
|
|
658
|
+
"bgColor": "#FFFFFF",
|
|
659
|
+
"borderColor": "#D8D7D4",
|
|
660
|
+
"fgColor": "#6F6F6D"
|
|
659
661
|
}
|
|
660
662
|
},
|
|
661
663
|
"light": {
|
|
662
664
|
"filled": {
|
|
663
|
-
"bgColor":
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
"pressed": "#E2E1DD",
|
|
667
|
-
"disabled": "#F4F4F2"
|
|
668
|
-
},
|
|
669
|
-
"borderColor": {
|
|
670
|
-
"rest": "#ffffff00",
|
|
671
|
-
"hover": "#ffffff00",
|
|
672
|
-
"pressed": "#ffffff00",
|
|
673
|
-
"disabled": "#ffffff00"
|
|
674
|
-
},
|
|
675
|
-
"fgColor": {
|
|
676
|
-
"rest": "#474746",
|
|
677
|
-
"hover": "#2D2D2D",
|
|
678
|
-
"pressed": "#2D2D2D",
|
|
679
|
-
"disabled": "#888783"
|
|
680
|
-
}
|
|
665
|
+
"bgColor": "#F4F4F2",
|
|
666
|
+
"borderColor": "#ffffff00",
|
|
667
|
+
"fgColor": "#6F6F6D"
|
|
681
668
|
},
|
|
682
669
|
"bordered": {
|
|
683
|
-
"bgColor":
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
"pressed": "#EFEEEA",
|
|
687
|
-
"disabled": "#F4F4F2"
|
|
688
|
-
},
|
|
689
|
-
"borderColor": {
|
|
690
|
-
"rest": "#D8D7D4",
|
|
691
|
-
"hover": "#D8D7D4",
|
|
692
|
-
"pressed": "#D8D7D4",
|
|
693
|
-
"disabled": "#EFEEEA"
|
|
694
|
-
},
|
|
695
|
-
"fgColor": {
|
|
696
|
-
"rest": "#474746",
|
|
697
|
-
"hover": "#474746",
|
|
698
|
-
"pressed": "#6F6F6D",
|
|
699
|
-
"disabled": "#888783"
|
|
700
|
-
}
|
|
670
|
+
"bgColor": "#F4F4F2",
|
|
671
|
+
"borderColor": "#D8D7D4",
|
|
672
|
+
"fgColor": "#6F6F6D"
|
|
701
673
|
}
|
|
702
674
|
}
|
|
703
675
|
},
|
|
704
676
|
"green": {
|
|
705
677
|
"bold": {
|
|
706
678
|
"filled": {
|
|
707
|
-
"bgColor":
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
"borderColor":
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
"
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
679
|
+
"bgColor": "#6EBF57",
|
|
680
|
+
"borderColor": "#ffffff00",
|
|
681
|
+
"fgColor": "#FFFFFF"
|
|
682
|
+
},
|
|
683
|
+
"bordered": {
|
|
684
|
+
"bgColor": "#6EBF57",
|
|
685
|
+
"borderColor": "#3f8d2a",
|
|
686
|
+
"fgColor": "#FFFFFF"
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
"extraBold": {
|
|
690
|
+
"filled": {
|
|
691
|
+
"bgColor": "#3f8d2a",
|
|
692
|
+
"borderColor": "#ffffff00",
|
|
693
|
+
"fgColor": "#FFFFFF"
|
|
694
|
+
},
|
|
695
|
+
"bordered": {
|
|
696
|
+
"bgColor": "#5ca647",
|
|
697
|
+
"borderColor": "#3f8d2a",
|
|
698
|
+
"fgColor": "#FFFFFF"
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
"extralight": {
|
|
702
|
+
"filled": {
|
|
703
|
+
"bgColor": "#E6F4E4",
|
|
704
|
+
"borderColor": "#ffffff00",
|
|
705
|
+
"fgColor": "#3f8d2a"
|
|
706
|
+
},
|
|
707
|
+
"bordered": {
|
|
708
|
+
"bgColor": "#E6F4E4",
|
|
709
|
+
"borderColor": "#BAE3AF",
|
|
710
|
+
"fgColor": "#3f8d2a"
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
"light": {
|
|
714
|
+
"filled": {
|
|
715
|
+
"bgColor": "#E2F1DE",
|
|
716
|
+
"borderColor": "#ffffff00",
|
|
717
|
+
"fgColor": "#3f8d2a"
|
|
718
|
+
},
|
|
719
|
+
"bordered": {
|
|
720
|
+
"bgColor": "#DCF1D5",
|
|
721
|
+
"borderColor": "#6EBF57",
|
|
722
|
+
"fgColor": "#3f8d2a"
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"indigo": {
|
|
727
|
+
"bold": {
|
|
728
|
+
"filled": {
|
|
729
|
+
"bgColor": "#8686FF",
|
|
730
|
+
"borderColor": "#ffffff00",
|
|
731
|
+
"fgColor": "#FFFFFF"
|
|
732
|
+
},
|
|
733
|
+
"bordered": {
|
|
734
|
+
"bgColor": "#8686FF",
|
|
735
|
+
"borderColor": "#5454e1",
|
|
736
|
+
"fgColor": "#FFFFFF"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"extraBold": {
|
|
740
|
+
"filled": {
|
|
741
|
+
"bgColor": "#5454e1",
|
|
742
|
+
"borderColor": "#ffffff00",
|
|
743
|
+
"fgColor": "#FFFFFF"
|
|
744
|
+
},
|
|
745
|
+
"bordered": {
|
|
746
|
+
"bgColor": "#6565FA",
|
|
747
|
+
"borderColor": "#5454e1",
|
|
748
|
+
"fgColor": "#FFFFFF"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"extralight": {
|
|
752
|
+
"filled": {
|
|
753
|
+
"bgColor": "#F7F7FC",
|
|
754
|
+
"borderColor": "#ffffff00",
|
|
755
|
+
"fgColor": "#5454e1"
|
|
756
|
+
},
|
|
757
|
+
"bordered": {
|
|
758
|
+
"bgColor": "#F4F4FF",
|
|
759
|
+
"borderColor": "#C1C1FF",
|
|
760
|
+
"fgColor": "#5454e1"
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"light": {
|
|
764
|
+
"filled": {
|
|
765
|
+
"bgColor": "#E8E8FF",
|
|
766
|
+
"borderColor": "#ffffff00",
|
|
767
|
+
"fgColor": "#5454e1"
|
|
768
|
+
},
|
|
769
|
+
"bordered": {
|
|
770
|
+
"bgColor": "#E8E8FF",
|
|
771
|
+
"borderColor": "#9D9DFF",
|
|
772
|
+
"fgColor": "#5454e1"
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"lime": {
|
|
777
|
+
"bold": {
|
|
778
|
+
"filled": {
|
|
779
|
+
"bgColor": "#779204",
|
|
780
|
+
"borderColor": "#ffffff00",
|
|
781
|
+
"fgColor": "#FFFFFF"
|
|
782
|
+
},
|
|
783
|
+
"bordered": {
|
|
784
|
+
"bgColor": "#779204",
|
|
785
|
+
"borderColor": "#4F6201",
|
|
786
|
+
"fgColor": "#FFFFFF"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"extraBold": {
|
|
790
|
+
"filled": {
|
|
791
|
+
"bgColor": "#4F6201",
|
|
792
|
+
"borderColor": "#ffffff00",
|
|
793
|
+
"fgColor": "#FFFFFF"
|
|
794
|
+
},
|
|
795
|
+
"bordered": {
|
|
796
|
+
"bgColor": "#536601",
|
|
797
|
+
"borderColor": "#4F6201",
|
|
798
|
+
"fgColor": "#FFFFFF"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"extralight": {
|
|
802
|
+
"filled": {
|
|
803
|
+
"bgColor": "#F1F6F2",
|
|
804
|
+
"borderColor": "#ffffff00",
|
|
805
|
+
"fgColor": "#536601"
|
|
806
|
+
},
|
|
807
|
+
"bordered": {
|
|
808
|
+
"bgColor": "#F4F7E6",
|
|
809
|
+
"borderColor": "#D5E68C",
|
|
810
|
+
"fgColor": "#4F6201"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"light": {
|
|
814
|
+
"filled": {
|
|
815
|
+
"bgColor": "#ECF6C2",
|
|
816
|
+
"borderColor": "#ffffff00",
|
|
817
|
+
"fgColor": "#4F6201"
|
|
818
|
+
},
|
|
819
|
+
"bordered": {
|
|
820
|
+
"bgColor": "#D5E68C",
|
|
821
|
+
"borderColor": "#779204",
|
|
822
|
+
"fgColor": "#4F6201"
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"mag": {
|
|
827
|
+
"bold": {
|
|
828
|
+
"filled": {
|
|
829
|
+
"bgColor": "#E63BAD",
|
|
830
|
+
"borderColor": "#ffffff00",
|
|
831
|
+
"fgColor": "#FFFFFF"
|
|
725
832
|
},
|
|
726
833
|
"bordered": {
|
|
727
|
-
"bgColor":
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
"pressed": "#EFEEEA",
|
|
731
|
-
"disabled": "#F4F4F2"
|
|
732
|
-
},
|
|
733
|
-
"borderColor": {
|
|
734
|
-
"rest": "#BAE3AF",
|
|
735
|
-
"hover": "#BAE3AF",
|
|
736
|
-
"pressed": "#BAE3AF",
|
|
737
|
-
"disabled": "#EFEEEA"
|
|
738
|
-
},
|
|
739
|
-
"fgColor": {
|
|
740
|
-
"rest": "#1D6B08",
|
|
741
|
-
"hover": "#145502",
|
|
742
|
-
"pressed": "#145502",
|
|
743
|
-
"disabled": "#888783"
|
|
744
|
-
}
|
|
834
|
+
"bgColor": "#EB3CB2",
|
|
835
|
+
"borderColor": "#c9178d",
|
|
836
|
+
"fgColor": "#FFFFFF"
|
|
745
837
|
}
|
|
746
838
|
},
|
|
747
839
|
"extraBold": {
|
|
748
840
|
"filled": {
|
|
749
|
-
"bgColor":
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
"pressed": "#3F9029",
|
|
753
|
-
"disabled": "#F4F4F2"
|
|
754
|
-
},
|
|
755
|
-
"borderColor": {
|
|
756
|
-
"rest": "#ffffff00",
|
|
757
|
-
"hover": "#ffffff00",
|
|
758
|
-
"pressed": "#ffffff00",
|
|
759
|
-
"disabled": "#ffffff00"
|
|
760
|
-
},
|
|
761
|
-
"fgColor": {
|
|
762
|
-
"rest": "#FFFFFF",
|
|
763
|
-
"hover": "#FFFFFF",
|
|
764
|
-
"pressed": "#FFFFFF",
|
|
765
|
-
"disabled": "#888783"
|
|
766
|
-
}
|
|
841
|
+
"bgColor": "#c9178d",
|
|
842
|
+
"borderColor": "#ffffff00",
|
|
843
|
+
"fgColor": "#FFFFFF"
|
|
767
844
|
},
|
|
768
845
|
"bordered": {
|
|
769
|
-
"bgColor":
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
"pressed": "#F4F4F2",
|
|
773
|
-
"disabled": "#F4F4F2"
|
|
774
|
-
},
|
|
775
|
-
"borderColor": {
|
|
776
|
-
"rest": "#3F9029",
|
|
777
|
-
"hover": "#32821C",
|
|
778
|
-
"pressed": "#32821C",
|
|
779
|
-
"disabled": "#EFEEEA"
|
|
780
|
-
},
|
|
781
|
-
"fgColor": {
|
|
782
|
-
"rest": "#145502",
|
|
783
|
-
"hover": "#145502",
|
|
784
|
-
"pressed": "#1D6B08",
|
|
785
|
-
"disabled": "#888783"
|
|
786
|
-
}
|
|
846
|
+
"bgColor": "#d22799",
|
|
847
|
+
"borderColor": "#c9178d",
|
|
848
|
+
"fgColor": "#FFFFFF"
|
|
787
849
|
}
|
|
788
850
|
},
|
|
789
851
|
"extralight": {
|
|
790
852
|
"filled": {
|
|
791
|
-
"bgColor":
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
"pressed": "#E6F4E4",
|
|
795
|
-
"disabled": "#F4F4F2"
|
|
796
|
-
},
|
|
797
|
-
"borderColor": {
|
|
798
|
-
"rest": "#ffffff00",
|
|
799
|
-
"hover": "#ffffff00",
|
|
800
|
-
"pressed": "#ffffff00",
|
|
801
|
-
"disabled": "#ffffff00"
|
|
802
|
-
},
|
|
803
|
-
"fgColor": {
|
|
804
|
-
"rest": "#3F9029",
|
|
805
|
-
"hover": "#32821C",
|
|
806
|
-
"pressed": "#32821C",
|
|
807
|
-
"disabled": "#888783"
|
|
808
|
-
}
|
|
853
|
+
"bgColor": "#FDD8F1",
|
|
854
|
+
"borderColor": "#ffffff00",
|
|
855
|
+
"fgColor": "#c9178d"
|
|
809
856
|
},
|
|
810
857
|
"bordered": {
|
|
811
|
-
"bgColor":
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
"pressed": "#F4F4F2",
|
|
815
|
-
"disabled": "#F4F4F2"
|
|
816
|
-
},
|
|
817
|
-
"borderColor": {
|
|
818
|
-
"rest": "#DCF1D5",
|
|
819
|
-
"hover": "#DCF1D5",
|
|
820
|
-
"pressed": "#DCF1D5",
|
|
821
|
-
"disabled": "#EFEEEA"
|
|
822
|
-
},
|
|
823
|
-
"fgColor": {
|
|
824
|
-
"rest": "#3F9029",
|
|
825
|
-
"hover": "#32821C",
|
|
826
|
-
"pressed": "#32821C",
|
|
827
|
-
"disabled": "#888783"
|
|
828
|
-
}
|
|
858
|
+
"bgColor": "#FDD8F1",
|
|
859
|
+
"borderColor": "#FFB5E6",
|
|
860
|
+
"fgColor": "#c9178d"
|
|
829
861
|
}
|
|
830
862
|
},
|
|
831
863
|
"light": {
|
|
832
864
|
"filled": {
|
|
833
|
-
"bgColor":
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
"pressed": "#E2F1DE",
|
|
837
|
-
"disabled": "#F4F4F2"
|
|
838
|
-
},
|
|
839
|
-
"borderColor": {
|
|
840
|
-
"rest": "#ffffff00",
|
|
841
|
-
"hover": "#ffffff00",
|
|
842
|
-
"pressed": "#ffffff00",
|
|
843
|
-
"disabled": "#ffffff00"
|
|
844
|
-
},
|
|
845
|
-
"fgColor": {
|
|
846
|
-
"rest": "#32821C",
|
|
847
|
-
"hover": "#1D6B08",
|
|
848
|
-
"pressed": "#1D6B08",
|
|
849
|
-
"disabled": "#888783"
|
|
850
|
-
}
|
|
865
|
+
"bgColor": "#FFC2EA",
|
|
866
|
+
"borderColor": "#ffffff00",
|
|
867
|
+
"fgColor": "#c9178d"
|
|
851
868
|
},
|
|
852
869
|
"bordered": {
|
|
853
|
-
"bgColor":
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
"pressed": "#EFEEEA",
|
|
857
|
-
"disabled": "#F4F4F2"
|
|
858
|
-
},
|
|
859
|
-
"borderColor": {
|
|
860
|
-
"rest": "#CCEEC2",
|
|
861
|
-
"hover": "#CCEEC2",
|
|
862
|
-
"pressed": "#CCEEC2",
|
|
863
|
-
"disabled": "#EFEEEA"
|
|
864
|
-
},
|
|
865
|
-
"fgColor": {
|
|
866
|
-
"rest": "#32821C",
|
|
867
|
-
"hover": "#1D6B08",
|
|
868
|
-
"pressed": "#1D6B08",
|
|
869
|
-
"disabled": "#888783"
|
|
870
|
-
}
|
|
870
|
+
"bgColor": "#FDD8F1",
|
|
871
|
+
"borderColor": "#FF9ADD",
|
|
872
|
+
"fgColor": "#c9178d"
|
|
871
873
|
}
|
|
872
874
|
}
|
|
873
875
|
},
|
|
874
876
|
"orange": {
|
|
875
877
|
"bold": {
|
|
876
878
|
"filled": {
|
|
877
|
-
"bgColor":
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
"borderColor":
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
"
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
879
|
+
"bgColor": "#F2711B",
|
|
880
|
+
"borderColor": "#ffffff00",
|
|
881
|
+
"fgColor": "#FFFFFF"
|
|
882
|
+
},
|
|
883
|
+
"bordered": {
|
|
884
|
+
"bgColor": "#F2711B",
|
|
885
|
+
"borderColor": "#BD4B04",
|
|
886
|
+
"fgColor": "#FFFFFF"
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
"extraBold": {
|
|
890
|
+
"filled": {
|
|
891
|
+
"bgColor": "#BD4B04",
|
|
892
|
+
"borderColor": "#ffffff00",
|
|
893
|
+
"fgColor": "#FFFFFF"
|
|
894
|
+
},
|
|
895
|
+
"bordered": {
|
|
896
|
+
"bgColor": "#C85700",
|
|
897
|
+
"borderColor": "#BD4B04",
|
|
898
|
+
"fgColor": "#FFFFFF"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
"extralight": {
|
|
902
|
+
"filled": {
|
|
903
|
+
"bgColor": "#FFEFE6",
|
|
904
|
+
"borderColor": "#ffffff00",
|
|
905
|
+
"fgColor": "#BD4B04"
|
|
906
|
+
},
|
|
907
|
+
"bordered": {
|
|
908
|
+
"bgColor": "#FEE8D8",
|
|
909
|
+
"borderColor": "#FF9B61",
|
|
910
|
+
"fgColor": "#BD4B04"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"light": {
|
|
914
|
+
"filled": {
|
|
915
|
+
"bgColor": "#FFDDC5",
|
|
916
|
+
"borderColor": "#ffffff00",
|
|
917
|
+
"fgColor": "#BD4B04"
|
|
918
|
+
},
|
|
919
|
+
"bordered": {
|
|
920
|
+
"bgColor": "#FFDDC5",
|
|
921
|
+
"borderColor": "#F2711B",
|
|
922
|
+
"fgColor": "#BD4B04"
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"purple": {
|
|
927
|
+
"bold": {
|
|
928
|
+
"filled": {
|
|
929
|
+
"bgColor": "#9035BD",
|
|
930
|
+
"borderColor": "#ffffff00",
|
|
931
|
+
"fgColor": "#FFFFFF"
|
|
895
932
|
},
|
|
896
933
|
"bordered": {
|
|
897
|
-
"bgColor":
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
"pressed": "#EFEEEA",
|
|
901
|
-
"disabled": "#F4F4F2"
|
|
902
|
-
},
|
|
903
|
-
"borderColor": {
|
|
904
|
-
"rest": "#FF9B61",
|
|
905
|
-
"hover": "#FF9B61",
|
|
906
|
-
"pressed": "#FF9B61",
|
|
907
|
-
"disabled": "#EFEEEA"
|
|
908
|
-
},
|
|
909
|
-
"fgColor": {
|
|
910
|
-
"rest": "#BD4B04",
|
|
911
|
-
"hover": "#953501",
|
|
912
|
-
"pressed": "#953501",
|
|
913
|
-
"disabled": "#888783"
|
|
914
|
-
}
|
|
934
|
+
"bgColor": "#9035BD",
|
|
935
|
+
"borderColor": "#5B2589",
|
|
936
|
+
"fgColor": "#FFFFFF"
|
|
915
937
|
}
|
|
916
938
|
},
|
|
917
939
|
"extraBold": {
|
|
918
940
|
"filled": {
|
|
919
|
-
"bgColor":
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
"pressed": "#BD4B04",
|
|
923
|
-
"disabled": "#F4F4F2"
|
|
924
|
-
},
|
|
925
|
-
"borderColor": {
|
|
926
|
-
"rest": "#ffffff00",
|
|
927
|
-
"hover": "#ffffff00",
|
|
928
|
-
"pressed": "#ffffff00",
|
|
929
|
-
"disabled": "#ffffff00"
|
|
930
|
-
},
|
|
931
|
-
"fgColor": {
|
|
932
|
-
"rest": "#FFFFFF",
|
|
933
|
-
"hover": "#FFFFFF",
|
|
934
|
-
"pressed": "#FFFFFF",
|
|
935
|
-
"disabled": "#888783"
|
|
936
|
-
}
|
|
941
|
+
"bgColor": "#5B2589",
|
|
942
|
+
"borderColor": "#ffffff00",
|
|
943
|
+
"fgColor": "#FFFFFF"
|
|
937
944
|
},
|
|
938
945
|
"bordered": {
|
|
939
|
-
"bgColor":
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
"pressed": "#F4F4F2",
|
|
943
|
-
"disabled": "#F4F4F2"
|
|
944
|
-
},
|
|
945
|
-
"borderColor": {
|
|
946
|
-
"rest": "#BD4B04",
|
|
947
|
-
"hover": "#953501",
|
|
948
|
-
"pressed": "#953501",
|
|
949
|
-
"disabled": "#EFEEEA"
|
|
950
|
-
},
|
|
951
|
-
"fgColor": {
|
|
952
|
-
"rest": "#953501",
|
|
953
|
-
"hover": "#953501",
|
|
954
|
-
"pressed": "#BD4B04",
|
|
955
|
-
"disabled": "#888783"
|
|
956
|
-
}
|
|
946
|
+
"bgColor": "#6F2EA8",
|
|
947
|
+
"borderColor": "#5B2589",
|
|
948
|
+
"fgColor": "#FFFFFF"
|
|
957
949
|
}
|
|
958
950
|
},
|
|
959
951
|
"extralight": {
|
|
960
952
|
"filled": {
|
|
961
|
-
"bgColor":
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
"pressed": "#FEE8D8",
|
|
965
|
-
"disabled": "#F4F4F2"
|
|
966
|
-
},
|
|
967
|
-
"borderColor": {
|
|
968
|
-
"rest": "#ffffff00",
|
|
969
|
-
"hover": "#ffffff00",
|
|
970
|
-
"pressed": "#ffffff00",
|
|
971
|
-
"disabled": "#ffffff00"
|
|
972
|
-
},
|
|
973
|
-
"fgColor": {
|
|
974
|
-
"rest": "#C85700",
|
|
975
|
-
"hover": "#BD4B04",
|
|
976
|
-
"pressed": "#BD4B04",
|
|
977
|
-
"disabled": "#888783"
|
|
978
|
-
}
|
|
953
|
+
"bgColor": "#faf5fd",
|
|
954
|
+
"borderColor": "#ffffff00",
|
|
955
|
+
"fgColor": "#5B2589"
|
|
979
956
|
},
|
|
980
957
|
"bordered": {
|
|
981
|
-
"bgColor":
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
"pressed": "#F4F4F2",
|
|
985
|
-
"disabled": "#F4F4F2"
|
|
986
|
-
},
|
|
987
|
-
"borderColor": {
|
|
988
|
-
"rest": "#FFD4B3",
|
|
989
|
-
"hover": "#FFD4B3",
|
|
990
|
-
"pressed": "#FFD4B3",
|
|
991
|
-
"disabled": "#EFEEEA"
|
|
992
|
-
},
|
|
993
|
-
"fgColor": {
|
|
994
|
-
"rest": "#C85700",
|
|
995
|
-
"hover": "#BD4B04",
|
|
996
|
-
"pressed": "#BD4B04",
|
|
997
|
-
"disabled": "#888783"
|
|
998
|
-
}
|
|
958
|
+
"bgColor": "#ECDAFA",
|
|
959
|
+
"borderColor": "#D7A7F7",
|
|
960
|
+
"fgColor": "#5B2589"
|
|
999
961
|
}
|
|
1000
962
|
},
|
|
1001
963
|
"light": {
|
|
1002
964
|
"filled": {
|
|
1003
|
-
"bgColor":
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
"pressed": "#FFDDC5",
|
|
1007
|
-
"disabled": "#F4F4F2"
|
|
1008
|
-
},
|
|
1009
|
-
"borderColor": {
|
|
1010
|
-
"rest": "#ffffff00",
|
|
1011
|
-
"hover": "#ffffff00",
|
|
1012
|
-
"pressed": "#ffffff00",
|
|
1013
|
-
"disabled": "#ffffff00"
|
|
1014
|
-
},
|
|
1015
|
-
"fgColor": {
|
|
1016
|
-
"rest": "#C85700",
|
|
1017
|
-
"hover": "#BD4B04",
|
|
1018
|
-
"pressed": "#BD4B04",
|
|
1019
|
-
"disabled": "#888783"
|
|
1020
|
-
}
|
|
965
|
+
"bgColor": "#ECD2FA",
|
|
966
|
+
"borderColor": "#ffffff00",
|
|
967
|
+
"fgColor": "#5B2589"
|
|
1021
968
|
},
|
|
1022
969
|
"bordered": {
|
|
1023
|
-
"bgColor":
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
"pressed": "#EFEEEA",
|
|
1027
|
-
"disabled": "#F4F4F2"
|
|
1028
|
-
},
|
|
1029
|
-
"borderColor": {
|
|
1030
|
-
"rest": "#FFBA86",
|
|
1031
|
-
"hover": "#FFBA86",
|
|
1032
|
-
"pressed": "#FFBA86",
|
|
1033
|
-
"disabled": "#EFEEEA"
|
|
1034
|
-
},
|
|
1035
|
-
"fgColor": {
|
|
1036
|
-
"rest": "#C85700",
|
|
1037
|
-
"hover": "#BD4B04",
|
|
1038
|
-
"pressed": "#BD4B04",
|
|
1039
|
-
"disabled": "#888783"
|
|
1040
|
-
}
|
|
970
|
+
"bgColor": "#E3C1F6",
|
|
971
|
+
"borderColor": "#A854D2",
|
|
972
|
+
"fgColor": "#5B2589"
|
|
1041
973
|
}
|
|
1042
974
|
}
|
|
1043
975
|
},
|
|
1044
976
|
"red": {
|
|
1045
977
|
"bold": {
|
|
1046
978
|
"filled": {
|
|
1047
|
-
"bgColor":
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
"pressed": "#FFD9D5",
|
|
1051
|
-
"disabled": "#F4F4F2"
|
|
1052
|
-
},
|
|
1053
|
-
"borderColor": {
|
|
1054
|
-
"rest": "#ffffff00",
|
|
1055
|
-
"hover": "#ffffff00",
|
|
1056
|
-
"pressed": "#ffffff00",
|
|
1057
|
-
"disabled": "#ffffff00"
|
|
1058
|
-
},
|
|
1059
|
-
"fgColor": {
|
|
1060
|
-
"rest": "#B50D0D",
|
|
1061
|
-
"hover": "#930202",
|
|
1062
|
-
"pressed": "#930202",
|
|
1063
|
-
"disabled": "#888783"
|
|
1064
|
-
}
|
|
979
|
+
"bgColor": "#EF6262",
|
|
980
|
+
"borderColor": "#ffffff00",
|
|
981
|
+
"fgColor": "#FFFFFF"
|
|
1065
982
|
},
|
|
1066
983
|
"bordered": {
|
|
1067
|
-
"bgColor":
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
"pressed": "#EFEEEA",
|
|
1071
|
-
"disabled": "#F4F4F2"
|
|
1072
|
-
},
|
|
1073
|
-
"borderColor": {
|
|
1074
|
-
"rest": "#FBC4C4",
|
|
1075
|
-
"hover": "#FBC4C4",
|
|
1076
|
-
"pressed": "#FBC4C4",
|
|
1077
|
-
"disabled": "#EFEEEA"
|
|
1078
|
-
},
|
|
1079
|
-
"fgColor": {
|
|
1080
|
-
"rest": "#B50D0D",
|
|
1081
|
-
"hover": "#930202",
|
|
1082
|
-
"pressed": "#930202",
|
|
1083
|
-
"disabled": "#888783"
|
|
1084
|
-
}
|
|
984
|
+
"bgColor": "#EF6262",
|
|
985
|
+
"borderColor": "#DA2222",
|
|
986
|
+
"fgColor": "#FFFFFF"
|
|
1085
987
|
}
|
|
1086
988
|
},
|
|
1087
989
|
"extraBold": {
|
|
1088
990
|
"filled": {
|
|
1089
|
-
"bgColor":
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
"pressed": "#DA2222",
|
|
1093
|
-
"disabled": "#F4F4F2"
|
|
1094
|
-
},
|
|
1095
|
-
"borderColor": {
|
|
1096
|
-
"rest": "#ffffff00",
|
|
1097
|
-
"hover": "#ffffff00",
|
|
1098
|
-
"pressed": "#ffffff00",
|
|
1099
|
-
"disabled": "#ffffff00"
|
|
1100
|
-
},
|
|
1101
|
-
"fgColor": {
|
|
1102
|
-
"rest": "#FFFFFF",
|
|
1103
|
-
"hover": "#FFFFFF",
|
|
1104
|
-
"pressed": "#FFFFFF",
|
|
1105
|
-
"disabled": "#888783"
|
|
1106
|
-
}
|
|
991
|
+
"bgColor": "#DA2222",
|
|
992
|
+
"borderColor": "#ffffff00",
|
|
993
|
+
"fgColor": "#FFFFFF"
|
|
1107
994
|
},
|
|
1108
995
|
"bordered": {
|
|
1109
|
-
"bgColor":
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
"pressed": "#F4F4F2",
|
|
1113
|
-
"disabled": "#F4F4F2"
|
|
1114
|
-
},
|
|
1115
|
-
"borderColor": {
|
|
1116
|
-
"rest": "#DA2222",
|
|
1117
|
-
"hover": "#D50606",
|
|
1118
|
-
"pressed": "#D50606",
|
|
1119
|
-
"disabled": "#EFEEEA"
|
|
1120
|
-
},
|
|
1121
|
-
"fgColor": {
|
|
1122
|
-
"rest": "#930202",
|
|
1123
|
-
"hover": "#930202",
|
|
1124
|
-
"pressed": "#B50D0D",
|
|
1125
|
-
"disabled": "#888783"
|
|
1126
|
-
}
|
|
996
|
+
"bgColor": "#E74646",
|
|
997
|
+
"borderColor": "#DA2222",
|
|
998
|
+
"fgColor": "#FFFFFF"
|
|
1127
999
|
}
|
|
1128
1000
|
},
|
|
1129
1001
|
"extralight": {
|
|
1130
1002
|
"filled": {
|
|
1131
|
-
"bgColor":
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
"pressed": "#FCEDEB",
|
|
1135
|
-
"disabled": "#F4F4F2"
|
|
1136
|
-
},
|
|
1137
|
-
"borderColor": {
|
|
1138
|
-
"rest": "#ffffff00",
|
|
1139
|
-
"hover": "#ffffff00",
|
|
1140
|
-
"pressed": "#ffffff00",
|
|
1141
|
-
"disabled": "#ffffff00"
|
|
1142
|
-
},
|
|
1143
|
-
"fgColor": {
|
|
1144
|
-
"rest": "#D50606",
|
|
1145
|
-
"hover": "#B50D0D",
|
|
1146
|
-
"pressed": "#B50D0D",
|
|
1147
|
-
"disabled": "#888783"
|
|
1148
|
-
}
|
|
1003
|
+
"bgColor": "#FCEDEB",
|
|
1004
|
+
"borderColor": "#ffffff00",
|
|
1005
|
+
"fgColor": "#DA2222"
|
|
1149
1006
|
},
|
|
1150
1007
|
"bordered": {
|
|
1151
|
-
"bgColor":
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
"pressed": "#F4F4F2",
|
|
1155
|
-
"disabled": "#F4F4F2"
|
|
1156
|
-
},
|
|
1157
|
-
"borderColor": {
|
|
1158
|
-
"rest": "#FFD9D5",
|
|
1159
|
-
"hover": "#FFD9D5",
|
|
1160
|
-
"pressed": "#FFD9D5",
|
|
1161
|
-
"disabled": "#EFEEEA"
|
|
1162
|
-
},
|
|
1163
|
-
"fgColor": {
|
|
1164
|
-
"rest": "#D50606",
|
|
1165
|
-
"hover": "#B50D0D",
|
|
1166
|
-
"pressed": "#B50D0D",
|
|
1167
|
-
"disabled": "#888783"
|
|
1168
|
-
}
|
|
1008
|
+
"bgColor": "#FFE6E2",
|
|
1009
|
+
"borderColor": "#FFD9D5",
|
|
1010
|
+
"fgColor": "#DA2222"
|
|
1169
1011
|
}
|
|
1170
1012
|
},
|
|
1171
1013
|
"light": {
|
|
1172
1014
|
"filled": {
|
|
1173
|
-
"bgColor":
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
"pressed": "#FFE6E2",
|
|
1177
|
-
"disabled": "#F4F4F2"
|
|
1178
|
-
},
|
|
1179
|
-
"borderColor": {
|
|
1180
|
-
"rest": "#ffffff00",
|
|
1181
|
-
"hover": "#ffffff00",
|
|
1182
|
-
"pressed": "#ffffff00",
|
|
1183
|
-
"disabled": "#ffffff00"
|
|
1184
|
-
},
|
|
1185
|
-
"fgColor": {
|
|
1186
|
-
"rest": "#D50606",
|
|
1187
|
-
"hover": "#B50D0D",
|
|
1188
|
-
"pressed": "#B50D0D",
|
|
1189
|
-
"disabled": "#888783"
|
|
1190
|
-
}
|
|
1015
|
+
"bgColor": "#FFE6E2",
|
|
1016
|
+
"borderColor": "#ffffff00",
|
|
1017
|
+
"fgColor": "#DA2222"
|
|
1191
1018
|
},
|
|
1192
1019
|
"bordered": {
|
|
1193
|
-
"bgColor":
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
"pressed": "#EFEEEA",
|
|
1197
|
-
"disabled": "#F4F4F2"
|
|
1198
|
-
},
|
|
1199
|
-
"borderColor": {
|
|
1200
|
-
"rest": "#FDCEC8",
|
|
1201
|
-
"hover": "#FDCEC8",
|
|
1202
|
-
"pressed": "#FDCEC8",
|
|
1203
|
-
"disabled": "#EFEEEA"
|
|
1204
|
-
},
|
|
1205
|
-
"fgColor": {
|
|
1206
|
-
"rest": "#D50606",
|
|
1207
|
-
"hover": "#B50D0D",
|
|
1208
|
-
"pressed": "#B50D0D",
|
|
1209
|
-
"disabled": "#888783"
|
|
1210
|
-
}
|
|
1020
|
+
"bgColor": "#FFD9D5",
|
|
1021
|
+
"borderColor": "#F99090",
|
|
1022
|
+
"fgColor": "#DA2222"
|
|
1211
1023
|
}
|
|
1212
1024
|
}
|
|
1213
1025
|
},
|
|
1214
1026
|
"teal": {
|
|
1215
1027
|
"bold": {
|
|
1216
1028
|
"filled": {
|
|
1217
|
-
"bgColor":
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
"pressed": "#B2E8F0",
|
|
1221
|
-
"disabled": "#F4F4F2"
|
|
1222
|
-
},
|
|
1223
|
-
"borderColor": {
|
|
1224
|
-
"rest": "#ffffff00",
|
|
1225
|
-
"hover": "#ffffff00",
|
|
1226
|
-
"pressed": "#ffffff00",
|
|
1227
|
-
"disabled": "#ffffff00"
|
|
1228
|
-
},
|
|
1229
|
-
"fgColor": {
|
|
1230
|
-
"rest": "#177E93",
|
|
1231
|
-
"hover": "#07596A",
|
|
1232
|
-
"pressed": "#07596A",
|
|
1233
|
-
"disabled": "#888783"
|
|
1234
|
-
}
|
|
1029
|
+
"bgColor": "#2E98AD",
|
|
1030
|
+
"borderColor": "#ffffff00",
|
|
1031
|
+
"fgColor": "#FFFFFF"
|
|
1235
1032
|
},
|
|
1236
1033
|
"bordered": {
|
|
1237
|
-
"bgColor":
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
"pressed": "#EFEEEA",
|
|
1241
|
-
"disabled": "#F4F4F2"
|
|
1242
|
-
},
|
|
1243
|
-
"borderColor": {
|
|
1244
|
-
"rest": "#82E2EF",
|
|
1245
|
-
"hover": "#82E2EF",
|
|
1246
|
-
"pressed": "#82E2EF",
|
|
1247
|
-
"disabled": "#EFEEEA"
|
|
1248
|
-
},
|
|
1249
|
-
"fgColor": {
|
|
1250
|
-
"rest": "#177E93",
|
|
1251
|
-
"hover": "#07596A",
|
|
1252
|
-
"pressed": "#07596A",
|
|
1253
|
-
"disabled": "#888783"
|
|
1254
|
-
}
|
|
1034
|
+
"bgColor": "#1B899E",
|
|
1035
|
+
"borderColor": "#07596A",
|
|
1036
|
+
"fgColor": "#FFFFFF"
|
|
1255
1037
|
}
|
|
1256
1038
|
},
|
|
1257
1039
|
"extraBold": {
|
|
1258
1040
|
"filled": {
|
|
1259
|
-
"bgColor":
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
"pressed": "#07596A",
|
|
1263
|
-
"disabled": "#F4F4F2"
|
|
1264
|
-
},
|
|
1265
|
-
"borderColor": {
|
|
1266
|
-
"rest": "#ffffff00",
|
|
1267
|
-
"hover": "#ffffff00",
|
|
1268
|
-
"pressed": "#ffffff00",
|
|
1269
|
-
"disabled": "#ffffff00"
|
|
1270
|
-
},
|
|
1271
|
-
"fgColor": {
|
|
1272
|
-
"rest": "#FFFFFF",
|
|
1273
|
-
"hover": "#FFFFFF",
|
|
1274
|
-
"pressed": "#FFFFFF",
|
|
1275
|
-
"disabled": "#888783"
|
|
1276
|
-
}
|
|
1041
|
+
"bgColor": "#177E93",
|
|
1042
|
+
"borderColor": "#ffffff00",
|
|
1043
|
+
"fgColor": "#FFFFFF"
|
|
1277
1044
|
},
|
|
1278
1045
|
"bordered": {
|
|
1279
|
-
"bgColor":
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
"pressed": "#F4F4F2",
|
|
1283
|
-
"disabled": "#F4F4F2"
|
|
1284
|
-
},
|
|
1285
|
-
"borderColor": {
|
|
1286
|
-
"rest": "#07596A",
|
|
1287
|
-
"hover": "#05475C",
|
|
1288
|
-
"pressed": "#05475C",
|
|
1289
|
-
"disabled": "#EFEEEA"
|
|
1290
|
-
},
|
|
1291
|
-
"fgColor": {
|
|
1292
|
-
"rest": "#024E67",
|
|
1293
|
-
"hover": "#024E67",
|
|
1294
|
-
"pressed": "#07596A",
|
|
1295
|
-
"disabled": "#888783"
|
|
1296
|
-
}
|
|
1046
|
+
"bgColor": "#177E93",
|
|
1047
|
+
"borderColor": "#07596A",
|
|
1048
|
+
"fgColor": "#FFFFFF"
|
|
1297
1049
|
}
|
|
1298
1050
|
},
|
|
1299
1051
|
"extralight": {
|
|
1300
1052
|
"filled": {
|
|
1301
|
-
"bgColor":
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
"pressed": "#E2F7FF",
|
|
1305
|
-
"disabled": "#F4F4F2"
|
|
1306
|
-
},
|
|
1307
|
-
"borderColor": {
|
|
1308
|
-
"rest": "#ffffff00",
|
|
1309
|
-
"hover": "#ffffff00",
|
|
1310
|
-
"pressed": "#ffffff00",
|
|
1311
|
-
"disabled": "#ffffff00"
|
|
1312
|
-
},
|
|
1313
|
-
"fgColor": {
|
|
1314
|
-
"rest": "#2E98AD",
|
|
1315
|
-
"hover": "#1B899E",
|
|
1316
|
-
"pressed": "#1B899E",
|
|
1317
|
-
"disabled": "#888783"
|
|
1318
|
-
}
|
|
1053
|
+
"bgColor": "#F0FBFF",
|
|
1054
|
+
"borderColor": "#ffffff00",
|
|
1055
|
+
"fgColor": "#1B899E"
|
|
1319
1056
|
},
|
|
1320
1057
|
"bordered": {
|
|
1321
|
-
"bgColor":
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
"pressed": "#F4F4F2",
|
|
1325
|
-
"disabled": "#F4F4F2"
|
|
1326
|
-
},
|
|
1327
|
-
"borderColor": {
|
|
1328
|
-
"rest": "#B2E8F0",
|
|
1329
|
-
"hover": "#B2E8F0",
|
|
1330
|
-
"pressed": "#B2E8F0",
|
|
1331
|
-
"disabled": "#EFEEEA"
|
|
1332
|
-
},
|
|
1333
|
-
"fgColor": {
|
|
1334
|
-
"rest": "#2E98AD",
|
|
1335
|
-
"hover": "#1B899E",
|
|
1336
|
-
"pressed": "#1B899E",
|
|
1337
|
-
"disabled": "#888783"
|
|
1338
|
-
}
|
|
1058
|
+
"bgColor": "#E2F7FF",
|
|
1059
|
+
"borderColor": "#82E2EF",
|
|
1060
|
+
"fgColor": "#1B899E"
|
|
1339
1061
|
}
|
|
1340
1062
|
},
|
|
1341
1063
|
"light": {
|
|
1342
1064
|
"filled": {
|
|
1343
|
-
"bgColor":
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
"pressed": "#C9F0F7",
|
|
1347
|
-
"disabled": "#F4F4F2"
|
|
1348
|
-
},
|
|
1349
|
-
"borderColor": {
|
|
1350
|
-
"rest": "#ffffff00",
|
|
1351
|
-
"hover": "#ffffff00",
|
|
1352
|
-
"pressed": "#ffffff00",
|
|
1353
|
-
"disabled": "#ffffff00"
|
|
1354
|
-
},
|
|
1355
|
-
"fgColor": {
|
|
1356
|
-
"rest": "#1B899E",
|
|
1357
|
-
"hover": "#177E93",
|
|
1358
|
-
"pressed": "#177E93",
|
|
1359
|
-
"disabled": "#888783"
|
|
1360
|
-
}
|
|
1065
|
+
"bgColor": "#B2E8F0",
|
|
1066
|
+
"borderColor": "#ffffff00",
|
|
1067
|
+
"fgColor": "#1B899E"
|
|
1361
1068
|
},
|
|
1362
1069
|
"bordered": {
|
|
1363
|
-
"bgColor":
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
"pressed": "#EFEEEA",
|
|
1367
|
-
"disabled": "#F4F4F2"
|
|
1368
|
-
},
|
|
1369
|
-
"borderColor": {
|
|
1370
|
-
"rest": "#A1E9F1",
|
|
1371
|
-
"hover": "#A1E9F1",
|
|
1372
|
-
"pressed": "#A1E9F1",
|
|
1373
|
-
"disabled": "#EFEEEA"
|
|
1374
|
-
},
|
|
1375
|
-
"fgColor": {
|
|
1376
|
-
"rest": "#1B899E",
|
|
1377
|
-
"hover": "#177E93",
|
|
1378
|
-
"pressed": "#177E93",
|
|
1379
|
-
"disabled": "#888783"
|
|
1380
|
-
}
|
|
1070
|
+
"bgColor": "#B2E8F0",
|
|
1071
|
+
"borderColor": "#2E98AD",
|
|
1072
|
+
"fgColor": "#1B899E"
|
|
1381
1073
|
}
|
|
1382
1074
|
}
|
|
1383
1075
|
},
|
|
1384
1076
|
"yellow": {
|
|
1385
1077
|
"bold": {
|
|
1386
1078
|
"filled": {
|
|
1387
|
-
"bgColor":
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
"pressed": "#FCE6AE",
|
|
1391
|
-
"disabled": "#F4F4F2"
|
|
1392
|
-
},
|
|
1393
|
-
"borderColor": {
|
|
1394
|
-
"rest": "#ffffff00",
|
|
1395
|
-
"hover": "#ffffff00",
|
|
1396
|
-
"pressed": "#ffffff00",
|
|
1397
|
-
"disabled": "#ffffff00"
|
|
1398
|
-
},
|
|
1399
|
-
"fgColor": {
|
|
1400
|
-
"rest": "#955C02",
|
|
1401
|
-
"hover": "#7E4E01",
|
|
1402
|
-
"pressed": "#7E4E01",
|
|
1403
|
-
"disabled": "#888783"
|
|
1404
|
-
}
|
|
1079
|
+
"bgColor": "#D99904",
|
|
1080
|
+
"borderColor": "#ffffff00",
|
|
1081
|
+
"fgColor": "#FFFFFF"
|
|
1405
1082
|
},
|
|
1406
1083
|
"bordered": {
|
|
1407
|
-
"bgColor":
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
"pressed": "#EFEEEA",
|
|
1411
|
-
"disabled": "#F4F4F2"
|
|
1412
|
-
},
|
|
1413
|
-
"borderColor": {
|
|
1414
|
-
"rest": "#FFCD44",
|
|
1415
|
-
"hover": "#FFCD44",
|
|
1416
|
-
"pressed": "#FFCD44",
|
|
1417
|
-
"disabled": "#EFEEEA"
|
|
1418
|
-
},
|
|
1419
|
-
"fgColor": {
|
|
1420
|
-
"rest": "#955C02",
|
|
1421
|
-
"hover": "#7E4E01",
|
|
1422
|
-
"pressed": "#7E4E01",
|
|
1423
|
-
"disabled": "#888783"
|
|
1424
|
-
}
|
|
1084
|
+
"bgColor": "#CF9202",
|
|
1085
|
+
"borderColor": "#B57C02",
|
|
1086
|
+
"fgColor": "#FFFFFF"
|
|
1425
1087
|
}
|
|
1426
1088
|
},
|
|
1427
1089
|
"extraBold": {
|
|
1428
1090
|
"filled": {
|
|
1429
|
-
"bgColor":
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
"pressed": "#B57C02",
|
|
1433
|
-
"disabled": "#F4F4F2"
|
|
1434
|
-
},
|
|
1435
|
-
"borderColor": {
|
|
1436
|
-
"rest": "#ffffff00",
|
|
1437
|
-
"hover": "#ffffff00",
|
|
1438
|
-
"pressed": "#ffffff00",
|
|
1439
|
-
"disabled": "#ffffff00"
|
|
1440
|
-
},
|
|
1441
|
-
"fgColor": {
|
|
1442
|
-
"rest": "#FFFFFF",
|
|
1443
|
-
"hover": "#FFFFFF",
|
|
1444
|
-
"pressed": "#FFFFFF",
|
|
1445
|
-
"disabled": "#888783"
|
|
1446
|
-
}
|
|
1091
|
+
"bgColor": "#B57C02",
|
|
1092
|
+
"borderColor": "#ffffff00",
|
|
1093
|
+
"fgColor": "#FFFFFF"
|
|
1447
1094
|
},
|
|
1448
1095
|
"bordered": {
|
|
1449
|
-
"bgColor":
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
"pressed": "#F4F4F2",
|
|
1453
|
-
"disabled": "#F4F4F2"
|
|
1454
|
-
},
|
|
1455
|
-
"borderColor": {
|
|
1456
|
-
"rest": "#B57C02",
|
|
1457
|
-
"hover": "#AA6A01",
|
|
1458
|
-
"pressed": "#AA6A01",
|
|
1459
|
-
"disabled": "#EFEEEA"
|
|
1460
|
-
},
|
|
1461
|
-
"fgColor": {
|
|
1462
|
-
"rest": "#7E4E01",
|
|
1463
|
-
"hover": "#7E4E01",
|
|
1464
|
-
"pressed": "#955C02",
|
|
1465
|
-
"disabled": "#888783"
|
|
1466
|
-
}
|
|
1096
|
+
"bgColor": "#CF9202",
|
|
1097
|
+
"borderColor": "#B57C02",
|
|
1098
|
+
"fgColor": "#FFFFFF"
|
|
1467
1099
|
}
|
|
1468
1100
|
},
|
|
1469
1101
|
"extralight": {
|
|
1470
1102
|
"filled": {
|
|
1471
|
-
"bgColor":
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
"pressed": "#FBF2D8",
|
|
1475
|
-
"disabled": "#F4F4F2"
|
|
1476
|
-
},
|
|
1477
|
-
"borderColor": {
|
|
1478
|
-
"rest": "#ffffff00",
|
|
1479
|
-
"hover": "#ffffff00",
|
|
1480
|
-
"pressed": "#ffffff00",
|
|
1481
|
-
"disabled": "#ffffff00"
|
|
1482
|
-
},
|
|
1483
|
-
"fgColor": {
|
|
1484
|
-
"rest": "#B57C02",
|
|
1485
|
-
"hover": "#AA6A01",
|
|
1486
|
-
"pressed": "#AA6A01",
|
|
1487
|
-
"disabled": "#888783"
|
|
1488
|
-
}
|
|
1103
|
+
"bgColor": "#FFFBF0",
|
|
1104
|
+
"borderColor": "#ffffff00",
|
|
1105
|
+
"fgColor": "#B57C02"
|
|
1489
1106
|
},
|
|
1490
1107
|
"bordered": {
|
|
1491
|
-
"bgColor":
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
"pressed": "#F4F4F2",
|
|
1495
|
-
"disabled": "#F4F4F2"
|
|
1496
|
-
},
|
|
1497
|
-
"borderColor": {
|
|
1498
|
-
"rest": "#FCE6AE",
|
|
1499
|
-
"hover": "#FCE6AE",
|
|
1500
|
-
"pressed": "#FCE6AE",
|
|
1501
|
-
"disabled": "#EFEEEA"
|
|
1502
|
-
},
|
|
1503
|
-
"fgColor": {
|
|
1504
|
-
"rest": "#B57C02",
|
|
1505
|
-
"hover": "#AA6A01",
|
|
1506
|
-
"pressed": "#AA6A01",
|
|
1507
|
-
"disabled": "#888783"
|
|
1508
|
-
}
|
|
1108
|
+
"bgColor": "#FBF2D8",
|
|
1109
|
+
"borderColor": "#FCE6AE",
|
|
1110
|
+
"fgColor": "#B57C02"
|
|
1509
1111
|
}
|
|
1510
1112
|
},
|
|
1511
1113
|
"light": {
|
|
1512
1114
|
"filled": {
|
|
1513
|
-
"bgColor":
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
"pressed": "#FFF0CD",
|
|
1517
|
-
"disabled": "#F4F4F2"
|
|
1518
|
-
},
|
|
1519
|
-
"borderColor": {
|
|
1520
|
-
"rest": "#ffffff00",
|
|
1521
|
-
"hover": "#ffffff00",
|
|
1522
|
-
"pressed": "#ffffff00",
|
|
1523
|
-
"disabled": "#ffffff00"
|
|
1524
|
-
},
|
|
1525
|
-
"fgColor": {
|
|
1526
|
-
"rest": "#AA6A01",
|
|
1527
|
-
"hover": "#955C02",
|
|
1528
|
-
"pressed": "#955C02",
|
|
1529
|
-
"disabled": "#888783"
|
|
1530
|
-
}
|
|
1115
|
+
"bgColor": "#FFF0CD",
|
|
1116
|
+
"borderColor": "#ffffff00",
|
|
1117
|
+
"fgColor": "#B57C02"
|
|
1531
1118
|
},
|
|
1532
1119
|
"bordered": {
|
|
1533
|
-
"bgColor":
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
"pressed": "#EFEEEA",
|
|
1537
|
-
"disabled": "#F4F4F2"
|
|
1538
|
-
},
|
|
1539
|
-
"borderColor": {
|
|
1540
|
-
"rest": "#FAD98E",
|
|
1541
|
-
"hover": "#FAD98E",
|
|
1542
|
-
"pressed": "#FAD98E",
|
|
1543
|
-
"disabled": "#EFEEEA"
|
|
1544
|
-
},
|
|
1545
|
-
"fgColor": {
|
|
1546
|
-
"rest": "#AA6A01",
|
|
1547
|
-
"hover": "#955C02",
|
|
1548
|
-
"pressed": "#955C02",
|
|
1549
|
-
"disabled": "#888783"
|
|
1550
|
-
}
|
|
1120
|
+
"bgColor": "#FCE6AE",
|
|
1121
|
+
"borderColor": "#E3A703",
|
|
1122
|
+
"fgColor": "#B57C02"
|
|
1551
1123
|
}
|
|
1552
1124
|
}
|
|
1553
1125
|
}
|
|
@@ -1573,10 +1145,10 @@ declare const _default: {
|
|
|
1573
1145
|
"disabled": "#ffffff00"
|
|
1574
1146
|
},
|
|
1575
1147
|
"fgColor": {
|
|
1576
|
-
"rest": "#
|
|
1577
|
-
"hover": "#
|
|
1578
|
-
"pressed": "#
|
|
1579
|
-
"disabled": "#
|
|
1148
|
+
"rest": "#6F6F6D",
|
|
1149
|
+
"hover": "#6F6F6D",
|
|
1150
|
+
"pressed": "#6F6F6D",
|
|
1151
|
+
"disabled": "#D8D7D4"
|
|
1580
1152
|
}
|
|
1581
1153
|
},
|
|
1582
1154
|
"selected": {
|
|
@@ -1593,10 +1165,10 @@ declare const _default: {
|
|
|
1593
1165
|
"disabled": "#ffffff00"
|
|
1594
1166
|
},
|
|
1595
1167
|
"fgColor": {
|
|
1596
|
-
"rest": "#
|
|
1597
|
-
"hover": "#
|
|
1598
|
-
"pressed": "#
|
|
1599
|
-
"disabled": "#
|
|
1168
|
+
"rest": "#1d5ece",
|
|
1169
|
+
"hover": "#1d5ece",
|
|
1170
|
+
"pressed": "#1d5ece",
|
|
1171
|
+
"disabled": "#D8D7D4"
|
|
1600
1172
|
}
|
|
1601
1173
|
}
|
|
1602
1174
|
},
|
|
@@ -1615,10 +1187,10 @@ declare const _default: {
|
|
|
1615
1187
|
"disabled": "#E2E1DD"
|
|
1616
1188
|
},
|
|
1617
1189
|
"fgColor": {
|
|
1618
|
-
"rest": "#
|
|
1619
|
-
"hover": "#
|
|
1620
|
-
"pressed": "#
|
|
1621
|
-
"disabled": "#
|
|
1190
|
+
"rest": "#6F6F6D",
|
|
1191
|
+
"hover": "#6F6F6D",
|
|
1192
|
+
"pressed": "#6F6F6D",
|
|
1193
|
+
"disabled": "#D8D7D4"
|
|
1622
1194
|
}
|
|
1623
1195
|
},
|
|
1624
1196
|
"selected": {
|
|
@@ -1629,16 +1201,16 @@ declare const _default: {
|
|
|
1629
1201
|
"disabled": "#F4F4F2"
|
|
1630
1202
|
},
|
|
1631
1203
|
"borderColor": {
|
|
1632
|
-
"rest": "#
|
|
1633
|
-
"hover": "#
|
|
1634
|
-
"pressed": "#
|
|
1204
|
+
"rest": "#236ae5 ",
|
|
1205
|
+
"hover": "#3a80f9 ",
|
|
1206
|
+
"pressed": "#1d5ece",
|
|
1635
1207
|
"disabled": "#EFEEEA"
|
|
1636
1208
|
},
|
|
1637
1209
|
"fgColor": {
|
|
1638
|
-
"rest": "#
|
|
1639
|
-
"hover": "#
|
|
1640
|
-
"pressed": "#
|
|
1641
|
-
"disabled": "#
|
|
1210
|
+
"rest": "#1d5ece",
|
|
1211
|
+
"hover": "#1d5ece",
|
|
1212
|
+
"pressed": "#1d5ece",
|
|
1213
|
+
"disabled": "#D8D7D4"
|
|
1642
1214
|
}
|
|
1643
1215
|
}
|
|
1644
1216
|
}
|
|
@@ -1710,107 +1282,92 @@ declare const _default: {
|
|
|
1710
1282
|
"shadows": {
|
|
1711
1283
|
"popover": "0 0 0 1px rgba(42, 28, 0, 0.07), 0 20px 24px 0 rgba(25, 25, 25, 0.05), 0 5px 8px 0 rgba(25, 25, 25, 0.03)",
|
|
1712
1284
|
"popoverElevated": "0 0 0 1px rgba(42, 28, 0, 0.10), 0 24px 32px 0 rgba(25, 25, 25, 0.08), 0 8px 12px 0 rgba(25, 25, 25, 0.05)",
|
|
1713
|
-
"sheet": "0 0 0 1px rgba(42, 28, 0, 0.07), 0 20px 24px 0 rgba(25, 25, 25, 0.05), 0 5px 8px 0 rgba(25, 25, 25, 0.03)"
|
|
1285
|
+
"sheet": "0 0 0 1px rgba(42, 28, 0, 0.07), 0 20px 24px 0 rgba(25, 25, 25, 0.05), 0 5px 8px 0 rgba(25, 25, 25, 0.03)",
|
|
1286
|
+
"tooltip": "0 1px 2px rgba(68, 68, 69, 0.08)"
|
|
1714
1287
|
},
|
|
1715
1288
|
"globalColors": {
|
|
1716
1289
|
"primary": "#2D2D2D",
|
|
1717
1290
|
"black": "#474746",
|
|
1718
1291
|
"white": "#FFFFFF",
|
|
1719
|
-
"focus": "#
|
|
1292
|
+
"focus": "#3a80f9 ",
|
|
1720
1293
|
"success": {
|
|
1721
|
-
"default": "#
|
|
1722
|
-
"muted": "#
|
|
1294
|
+
"default": "#3f8d2a",
|
|
1295
|
+
"muted": "#6EBF57"
|
|
1723
1296
|
},
|
|
1724
1297
|
"warning": {
|
|
1725
1298
|
"default": "#FFB404",
|
|
1726
|
-
"muted": "#
|
|
1299
|
+
"muted": "#D99904"
|
|
1727
1300
|
},
|
|
1728
1301
|
"error": {
|
|
1729
|
-
"default": "#
|
|
1730
|
-
"muted": "#
|
|
1302
|
+
"default": "#DA2222",
|
|
1303
|
+
"muted": "#EF6262"
|
|
1731
1304
|
},
|
|
1732
1305
|
"info": {
|
|
1733
|
-
"default": "#
|
|
1734
|
-
"muted": "#
|
|
1306
|
+
"default": "#1d5ece",
|
|
1307
|
+
"muted": "#3a80f9 "
|
|
1735
1308
|
},
|
|
1736
1309
|
"fg": {
|
|
1737
1310
|
"neutral": {
|
|
1738
|
-
"
|
|
1739
|
-
"
|
|
1740
|
-
"
|
|
1741
|
-
"
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1311
|
+
"inverted": "#FFFFFF",
|
|
1312
|
+
"disabled": "#D8D7D4",
|
|
1313
|
+
"subtle": "#ABA9A5",
|
|
1314
|
+
"muted": "#888783",
|
|
1315
|
+
"default": "#6F6F6D",
|
|
1316
|
+
"contrast": "#474746"
|
|
1744
1317
|
},
|
|
1745
1318
|
"link": {
|
|
1746
|
-
"extraDark": "#
|
|
1319
|
+
"extraDark": "#474746",
|
|
1747
1320
|
"default": "#525252",
|
|
1748
1321
|
"hover": "#ABA9A5"
|
|
1749
1322
|
},
|
|
1750
1323
|
"green": {
|
|
1751
|
-
"
|
|
1752
|
-
"
|
|
1753
|
-
"3": "#32821C",
|
|
1754
|
-
"4": "#1D6B08",
|
|
1755
|
-
"5": "#145502"
|
|
1324
|
+
"muted": "#6EBF57",
|
|
1325
|
+
"contrast": "#3f8d2a"
|
|
1756
1326
|
},
|
|
1757
1327
|
"teal": {
|
|
1758
|
-
"
|
|
1759
|
-
"
|
|
1760
|
-
"3": "#177E93",
|
|
1761
|
-
"4": "#07596A",
|
|
1762
|
-
"5": "#024E67"
|
|
1328
|
+
"muted": "#1B899E",
|
|
1329
|
+
"contrast": "#1B899E"
|
|
1763
1330
|
},
|
|
1764
1331
|
"yellow": {
|
|
1765
|
-
"
|
|
1766
|
-
"
|
|
1767
|
-
"3": "#AA6A01",
|
|
1768
|
-
"4": "#955C02",
|
|
1769
|
-
"5": "#7E4E01"
|
|
1332
|
+
"muted": "#D99904",
|
|
1333
|
+
"contrast": "#B57C02"
|
|
1770
1334
|
},
|
|
1771
1335
|
"orange": {
|
|
1772
|
-
"
|
|
1773
|
-
"
|
|
1774
|
-
"5": "#953501"
|
|
1336
|
+
"muted": "#D95903",
|
|
1337
|
+
"contrast": "#BD4B04"
|
|
1775
1338
|
},
|
|
1776
1339
|
"red": {
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1779
|
-
"5": "#930202"
|
|
1340
|
+
"muted": "#EF6262",
|
|
1341
|
+
"contrast": "#DA2222"
|
|
1780
1342
|
},
|
|
1781
1343
|
"magenta": {
|
|
1782
|
-
"
|
|
1783
|
-
"
|
|
1784
|
-
"3": "#D2038A",
|
|
1785
|
-
"4": "#B00172"
|
|
1344
|
+
"muted": "#EB3CB2",
|
|
1345
|
+
"contrast": "#c9178d"
|
|
1786
1346
|
},
|
|
1787
1347
|
"indigo": {
|
|
1788
|
-
"
|
|
1789
|
-
"
|
|
1790
|
-
"5": "#5757D6",
|
|
1791
|
-
"6": "#5050C8"
|
|
1348
|
+
"muted": "#8686FF",
|
|
1349
|
+
"contrast": "#5454e1"
|
|
1792
1350
|
},
|
|
1793
1351
|
"blue": {
|
|
1794
|
-
"
|
|
1795
|
-
"
|
|
1796
|
-
"3": "#0959E3",
|
|
1797
|
-
"4": "#034FD2",
|
|
1798
|
-
"5": "#054BC5"
|
|
1352
|
+
"muted": "#3a80f9 ",
|
|
1353
|
+
"contrast": "#1d5ece"
|
|
1799
1354
|
},
|
|
1800
1355
|
"purple": {
|
|
1801
|
-
"
|
|
1802
|
-
"
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
"
|
|
1356
|
+
"muted": "#9035BD",
|
|
1357
|
+
"contrast": "#5B2589"
|
|
1358
|
+
},
|
|
1359
|
+
"lime": {
|
|
1360
|
+
"muted": "#536601",
|
|
1361
|
+
"contrast": "#4F6201"
|
|
1806
1362
|
}
|
|
1807
1363
|
},
|
|
1808
1364
|
"text": {
|
|
1809
|
-
"
|
|
1810
|
-
"
|
|
1811
|
-
"muted": "#888783",
|
|
1365
|
+
"inverted": "#FFFFFF",
|
|
1366
|
+
"disabled": "#D8D7D4",
|
|
1812
1367
|
"subtle": "#ABA9A5",
|
|
1813
|
-
"
|
|
1368
|
+
"muted": "#888783",
|
|
1369
|
+
"default": "#6F6F6D",
|
|
1370
|
+
"contrast": "#474746"
|
|
1814
1371
|
},
|
|
1815
1372
|
"canvas": {
|
|
1816
1373
|
"default": "#FFFFFF",
|
|
@@ -1849,22 +1406,22 @@ declare const _default: {
|
|
|
1849
1406
|
"06": "#D8D7D4"
|
|
1850
1407
|
},
|
|
1851
1408
|
"dark": {
|
|
1852
|
-
"04": "#
|
|
1853
|
-
"05": "#
|
|
1854
|
-
"06": "#
|
|
1855
|
-
"07": "#
|
|
1409
|
+
"04": "#888783",
|
|
1410
|
+
"05": "#6F6F6D",
|
|
1411
|
+
"06": "#525252",
|
|
1412
|
+
"07": "#474746"
|
|
1856
1413
|
}
|
|
1857
1414
|
}
|
|
1858
1415
|
},
|
|
1859
1416
|
"syntax": {
|
|
1860
|
-
"comment": "#
|
|
1861
|
-
"key": "#
|
|
1862
|
-
"constant": "#
|
|
1417
|
+
"comment": "#888783",
|
|
1418
|
+
"key": "#6F6F6D",
|
|
1419
|
+
"constant": "#3a80f9 ",
|
|
1863
1420
|
"constantOtherReferenceLink": "#0a3069",
|
|
1864
|
-
"entity": "#
|
|
1865
|
-
"entityTag": "#
|
|
1866
|
-
"keyword": "#
|
|
1867
|
-
"string": "#
|
|
1421
|
+
"entity": "#d22799",
|
|
1422
|
+
"entityTag": "#d22799",
|
|
1423
|
+
"keyword": "#EF6262",
|
|
1424
|
+
"string": "#EF6262",
|
|
1868
1425
|
"stringRegexp": "#A2D794",
|
|
1869
1426
|
"variable": "#FF8635",
|
|
1870
1427
|
"brackethighlighterAngle": "#ABA9A5",
|
|
@@ -1884,12 +1441,18 @@ declare const _default: {
|
|
|
1884
1441
|
"markupChangedBg": "#FEE8D8",
|
|
1885
1442
|
"markupChangedText": "#FF8635",
|
|
1886
1443
|
"nullLiteral": "#E2E1DD",
|
|
1887
|
-
"booleanLiteral": "#
|
|
1444
|
+
"booleanLiteral": "#9035BD",
|
|
1445
|
+
"numberLiteral": "#3a80f9 ",
|
|
1888
1446
|
"bracket": "#E01280",
|
|
1889
|
-
"
|
|
1890
|
-
"
|
|
1447
|
+
"bracketNested": "#9035BD",
|
|
1448
|
+
"stringUrl": "#6565FA",
|
|
1449
|
+
"stringEmail": "#6565FA",
|
|
1891
1450
|
"stringUuid": "#D8D7D4",
|
|
1892
|
-
"rowHoverBg": "#
|
|
1451
|
+
"rowHoverBg": "#F9F9F8",
|
|
1452
|
+
"collapsedRowBg": "#FFFFFF",
|
|
1453
|
+
"watchMark": "#518ff8",
|
|
1454
|
+
"watchMarkHover": "#518ff8",
|
|
1455
|
+
"watchRowBg": "#F4F8FF"
|
|
1893
1456
|
}
|
|
1894
1457
|
}
|
|
1895
1458
|
}
|