-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathvariables.json
More file actions
1537 lines (1537 loc) · 75.2 KB
/
variables.json
File metadata and controls
1537 lines (1537 loc) · 75.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"root": {
"sapBrandColor": "#0a6ed1",
"sapHighlightColor": "#0854a0",
"sapBaseColor": "#fff",
"sapShellColor": "#354a5f",
"sapBackgroundColor": "#f7f7f7",
"sapFontFamily": "\"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontSize": ".875rem",
"sapTextColor": "#232629",
"sapLinkColor": "#0a6ed1",
"sapCompanyLogo": "none",
"sapFavicon": "none",
"sapBackgroundImage": "none",
"sapBackgroundImageOpacity": "1.0",
"sapBackgroundImageRepeat": "false",
"sapSelectedColor": "#0854a0",
"sapHoverColor": "#ededed",
"sapActiveColor": "#0854a0",
"sapTitleColor": "#232629",
"sapNegativeColor": "#bb0000",
"sapCriticalColor": "#df6e0c",
"sapPositiveColor": "#107e3e",
"sapInformativeColor": "#0a6ed1",
"sapNeutralColor": "#6a6d70",
"sapNegativeElementColor": "#bb0000",
"sapCriticalElementColor": "#df6e0c",
"sapPositiveElementColor": "#107e3e",
"sapInformativeElementColor": "#0a6ed1",
"sapNeutralElementColor": "#6a6d70",
"sapNegativeTextColor": "#bb0000",
"sapCriticalTextColor": "#b3590a",
"sapPositiveTextColor": "#107e3e",
"sapInformativeTextColor": "#0a6ed1",
"sapNeutralTextColor": "#6a6d70",
"sapErrorColor": "#bb0000",
"sapWarningColor": "#df6e0c",
"sapSuccessColor": "#107e3e",
"sapInformationColor": "#0a6ed1",
"sapErrorBackground": "#ffebeb",
"sapWarningBackground": "#fef7f1",
"sapSuccessBackground": "#f1fdf6",
"sapInformationBackground": "#f5faff",
"sapNeutralBackground": "#f4f4f4",
"sapErrorBorderColor": "#bb0000",
"sapWarningBorderColor": "#df6e0c",
"sapSuccessBorderColor": "#107e3e",
"sapInformationBorderColor": "#0a6ed1",
"sapNeutralBorderColor": "#6a6d70",
"sapElement_LineHeight": "2.75rem",
"sapElement_Height": "2.25rem",
"sapElement_BorderWidth": ".0625rem",
"sapElement_BorderCornerRadius": ".25rem",
"sapElement_Compact_LineHeight": "2rem",
"sapElement_Compact_Height": "1.625rem",
"sapElement_Condensed_LineHeight": "1.5rem",
"sapElement_Condensed_Height": "1.375rem",
"sapContent_LineHeight": "1.4",
"sapContent_IconHeight": "1rem",
"sapContent_IconColor": "#0854a0",
"sapContent_ContrastIconColor": "#fff",
"sapContent_NonInteractiveIconColor": "#6a6d70",
"sapContent_MarkerIconColor": "#286eb4",
"sapContent_MarkerTextColor": "#0e7581",
"sapContent_MeasureIndicatorColor": "#89919a",
"sapContent_Selected_MeasureIndicatorColor": "#89919a",
"sapContent_Placeholderloading_Background": "#ccc",
"sapContent_Placeholderloading_Gradient": "linear-gradient(to right, #ccc 0%, #ccc 20%, #999 50%, #ccc 80%, #ccc 100%)",
"sapContent_ImagePlaceholderBackground": "#ccc",
"sapContent_ImagePlaceholderForegroundColor": "#fff",
"sapContent_RatedColor": "#d08014",
"sapContent_UnratedColor": "#89919a",
"sapContent_BusyColor": "#0854a0",
"sapContent_FocusColor": "#000",
"sapContent_FocusStyle": "dotted",
"sapContent_FocusWidth": ".0625rem",
"sapContent_ContrastFocusColor": "#fff",
"sapContent_ShadowColor": "#000",
"sapContent_ContrastShadowColor": "#fff",
"sapContent_Shadow0": "0 0 0 0.0625rem rgba(0,0,0,0.1), 0 0.125rem 0.5rem 0 rgba(0,0,0,0.1)",
"sapContent_Shadow1": "0 0 0 0.0625rem rgba(0,0,0,0.42), 0 0.125rem 0.5rem 0 rgba(0,0,0,0.3)",
"sapContent_Shadow2": "0 0 0 0.0625rem rgba(0,0,0,0.42), 0 0.625rem 1.875rem 0 rgba(0,0,0,0.3)",
"sapContent_Shadow3": "0 0 0 0.0625rem rgba(0,0,0,0.42), 0 1.25rem 5rem 0 rgba(0,0,0,0.3)",
"sapContent_TextShadow": "0 0 0.125rem #fff",
"sapContent_ContrastTextShadow": "0 0 0.0625rem rgba(0,0,0,0.7)",
"sapContent_HeaderShadow": "0 0.125rem 0.125rem 0 rgba(0,0,0,0.05), inset 0 -0.0625rem 0 0 #d9d9d9",
"sapContent_Interaction_Shadow": "none",
"sapContent_Selected_Shadow": "none",
"sapContent_Negative_Shadow": "none",
"sapContent_Critical_Shadow": "none",
"sapContent_Positive_Shadow": "none",
"sapContent_Informative_Shadow": "none",
"sapContent_Neutral_Shadow": "none",
"sapContent_SearchHighlightColor": "#d4f7db",
"sapContent_HelpColor": "#3f8600",
"sapContent_LabelColor": "#6a6d70",
"sapContent_MonospaceFontFamily": "\"72Mono\", \"72Monofull\", lucida console, monospace",
"sapContent_MonospaceBoldFontFamily": "\"72Mono-Bold\", \"72Mono-Boldfull\", lucida console, monospace",
"sapContent_IconFontFamily": "\"SAP-icons\"",
"sapContent_DisabledTextColor": "rgba(35,38,41,0.6)",
"sapContent_DisabledOpacity": "0.4",
"sapContent_ContrastTextThreshold": "0.65",
"sapContent_ContrastTextColor": "#fff",
"sapContent_ForegroundColor": "#efefef",
"sapContent_ForegroundBorderColor": "#89919a",
"sapContent_ForegroundTextColor": "#232629",
"sapContent_BadgeBackground": "#d04343",
"sapContent_BadgeTextColor": "#fff",
"sapContent_BadgeBorderColor": "#fff",
"sapContent_DragAndDropActiveColor": "#0854a0",
"sapContent_Selected_TextColor": "#fff",
"sapContent_Selected_Background": "#0854a0",
"sapContent_Selected_Hover_Background": "#095caf",
"sapContent_Selected_ForegroundColor": "#0854a0",
"sapContent_ForcedColorAdjust": "none",
"sapContent_Lite_Shadow": "none",
"sapContent_Illustrative_Color1": "#9b015d",
"sapContent_Illustrative_Color2": "#56bdff",
"sapContent_Illustrative_Color3": "#ff7f4c",
"sapContent_Illustrative_Color4": "#4a5055",
"sapContent_Illustrative_Color5": "#9da4aa",
"sapContent_Illustrative_Color6": "#c6cace",
"sapContent_Illustrative_Color7": "#dbf1ff",
"sapContent_Illustrative_Color8": "#fff",
"sapContent_Illustrative_Color9": "#0899a7",
"sapContent_Illustrative_Color10": "#dbf1ff",
"sapContent_Illustrative_Color11": "#df1278",
"sapContent_Illustrative_Color12": "#00a800",
"sapContent_Illustrative_Color13": "#0070f2",
"sapContent_Illustrative_Color14": "#0040b0",
"sapContent_Illustrative_Color15": "#c35500",
"sapContent_Illustrative_Color16": "#8d2a00",
"sapContent_Illustrative_Color17": "#046c7c",
"sapContent_Illustrative_Color18": "#bce5ff",
"sapContent_Illustrative_Color19": "#a3dbff",
"sapContent_Illustrative_Color20": "#89d1ff",
"sapContent_Illustrative_Color21": "#1b90ff",
"sapContent_Illustrative_Color22": "#00144a",
"sapContent_Illustrative_Color23": "#d20a0a",
"sapContent_Illustrative_Color24": "#ffb2d2",
"sapContent_Illustrative_Color25": "#ffeaf4",
"sapContent_Illustrative_Color26": "#ffdf72",
"sapContent_Illustrative_Color27": "#fff8d6",
"sapContent_Illustrative_Color28": "#a93e00",
"sapContent_Illustrative_Color29": "#450b00",
"sapContent_Illustrative_Color30": "#340800",
"sapContent_Illustrative_Color31": "#ffab92",
"sapContent_Space_S": "1rem",
"sapContent_Space_M": "2rem",
"sapContent_Space_L": "2rem",
"sapContent_Space_XL": "3rem",
"sapContent_Space_Tiny": "0.5rem",
"sapContent_Space_Small": "1rem",
"sapContent_Space_Medium": "2rem",
"sapContent_Space_Large": "3rem",
"sapContent_Margin_Tiny": "0 0 1rem",
"sapContent_Margin_Small": "1rem",
"sapContent_Margin_Medium": "1rem 2rem",
"sapContent_Margin_Large": "1rem 3rem",
"sapContent_Margin_S": "0 0 1rem",
"sapContent_Margin_M": "1rem",
"sapContent_Margin_L": "1rem 2rem",
"sapContent_Margin_XL": "1rem 3rem",
"sapContent_Padding_S": "0rem",
"sapContent_Padding_M": "2rem",
"sapContent_Padding_L": "2rem",
"sapContent_Padding_XL": "3rem",
"sapContent_Gap": "1rem",
"sapContent_Success_HeaderShadow": "0 0.125rem 0.125rem 0 rgba(0,0,0,0.05), inset 0 -0.0625rem 0 0 #107e3e",
"sapContent_Warning_HeaderShadow": "0 0.125rem 0.125rem 0 rgba(0,0,0,0.05), inset 0 -0.0625rem 0 0 #df6e0c",
"sapContent_Error_HeaderShadow": "0 0.125rem 0.125rem 0 rgba(0,0,0,0.05), inset 0 -0.0625rem 0 0 #bb0000",
"sapContent_Information_HeaderShadow": "0 0.125rem 0.125rem 0 rgba(0,0,0,0.05), inset 0 -0.0625rem 0 0 #0a6ed1",
"sapFontLightFamily": "\"72-Light\", \"72-Lightfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontBoldFamily": "\"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontSemiboldFamily": "\"72-Semibold\", \"72-Semiboldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontSemiboldDuplexFamily": "\"72-SemiboldDuplex\", \"72-SemiboldDuplexfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontBlackFamily": "\"72Black\", \"72Blackfull\",\"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontHeaderFamily": "\"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapFontSmallSize": ".75rem",
"sapFontLargeSize": "1rem",
"sapFontHeader1Size": "2.25rem",
"sapFontHeader2Size": "1.5rem",
"sapFontHeader3Size": "1.25rem",
"sapFontHeader4Size": "1.125rem",
"sapFontHeader5Size": "1rem",
"sapFontHeader6Size": ".875rem",
"sapLink_TextDecoration": "none",
"sapLink_Hover_Color": "#0854a0",
"sapLink_Hover_TextDecoration": "underline",
"sapLink_Active_Color": "#0a6ed1",
"sapLink_Active_TextDecoration": "underline",
"sapLink_Visited_Color": "#0a6ed1",
"sapLink_InvertedColor": "#d3e8fd",
"sapLink_SubtleColor": "#074888",
"sapShell_Background": "#edeff0",
"sapShell_BackgroundImage": "linear-gradient(to bottom, #dfe3e4, #f3f4f5)",
"sapShell_BackgroundImageOpacity": "1.0",
"sapShell_BackgroundImageRepeat": "false",
"sapShell_BorderColor": "#354a5f",
"sapShell_TextColor": "#fff",
"sapShell_InteractiveBackground": "#354a5f",
"sapShell_InteractiveTextColor": "#d1e8ff",
"sapShell_InteractiveBorderColor": "#7996b4",
"sapShell_GroupTitleTextColor": "#232629",
"sapShell_GroupTitleTextShadow": "0 0 0.125rem #fff",
"sapShell_Hover_Background": "#283848",
"sapShell_Active_Background": "#23303e",
"sapShell_Active_TextColor": "#fff",
"sapShell_Selected_Background": "#23303e",
"sapShell_Selected_TextColor": "#fff",
"sapShell_Selected_Hover_Background": "#23303e",
"sapShell_Favicon": "none",
"sapShell_Navigation_Background": "#354a5f",
"sapShell_Navigation_Hover_Background": "#283848",
"sapShell_Navigation_SelectedColor": "#d1e8ff",
"sapShell_Navigation_Selected_TextColor": "#d1e8ff",
"sapShell_Navigation_TextColor": "#fff",
"sapShell_Navigation_Active_TextColor": "#fff",
"sapShell_Navigation_Active_Background": "#23303e",
"sapShell_Shadow": "0 0.125rem 0.125rem 0 rgba(0,0,0,0.08), inset 0 -0.0625rem 0 0 rgba(0,0,0,0.18)",
"sapShell_NegativeColor": "#f88",
"sapShell_CriticalColor": "#f8b67d",
"sapShell_PositiveColor": "#abe2c2",
"sapShell_InformativeColor": "#b1d6fb",
"sapShell_NeutralColor": "#d4d6d7",
"sapShell_Assistant_ForegroundColor": "#9f88ff",
"sapShell_SubBrand_TextColor": "#fff",
"sapShell_Category_1_Background": "#286eb4",
"sapShell_Category_1_BorderColor": "#286eb4",
"sapShell_Category_1_TextColor": "#fff",
"sapShell_Category_1_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_2_Background": "#db1f77",
"sapShell_Category_2_BorderColor": "#db1f77",
"sapShell_Category_2_TextColor": "#fff",
"sapShell_Category_2_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_3_Background": "#d58215",
"sapShell_Category_3_BorderColor": "#d58215",
"sapShell_Category_3_TextColor": "#fff",
"sapShell_Category_3_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_4_Background": "#892971",
"sapShell_Category_4_BorderColor": "#892971",
"sapShell_Category_4_TextColor": "#fff",
"sapShell_Category_4_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_5_Background": "#bb2f2f",
"sapShell_Category_5_BorderColor": "#bb2f2f",
"sapShell_Category_5_TextColor": "#fff",
"sapShell_Category_5_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_6_Background": "#1193a2",
"sapShell_Category_6_BorderColor": "#1193a2",
"sapShell_Category_6_TextColor": "#fff",
"sapShell_Category_6_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_7_Background": "#cf5db3",
"sapShell_Category_7_BorderColor": "#cf5db3",
"sapShell_Category_7_TextColor": "#fff",
"sapShell_Category_7_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_8_Background": "#8b9668",
"sapShell_Category_8_BorderColor": "#8b9668",
"sapShell_Category_8_TextColor": "#fff",
"sapShell_Category_8_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_9_Background": "#597da1",
"sapShell_Category_9_BorderColor": "#597da1",
"sapShell_Category_9_TextColor": "#fff",
"sapShell_Category_9_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_10_Background": "#647987",
"sapShell_Category_10_BorderColor": "#647987",
"sapShell_Category_10_TextColor": "#fff",
"sapShell_Category_10_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_11_Background": "#dc5b5b",
"sapShell_Category_11_BorderColor": "#dc5b5b",
"sapShell_Category_11_TextColor": "#fff",
"sapShell_Category_11_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_12_Background": "#5154bd",
"sapShell_Category_12_BorderColor": "#5154bd",
"sapShell_Category_12_TextColor": "#fff",
"sapShell_Category_12_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_13_Background": "#bc1b66",
"sapShell_Category_13_BorderColor": "#bc1b66",
"sapShell_Category_13_TextColor": "#fff",
"sapShell_Category_13_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_14_Background": "#49797e",
"sapShell_Category_14_BorderColor": "#49797e",
"sapShell_Category_14_TextColor": "#fff",
"sapShell_Category_14_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_15_Background": "#476380",
"sapShell_Category_15_BorderColor": "#476380",
"sapShell_Category_15_TextColor": "#fff",
"sapShell_Category_15_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Category_16_Background": "#687a33",
"sapShell_Category_16_BorderColor": "#687a33",
"sapShell_Category_16_TextColor": "#fff",
"sapShell_Category_16_TextShadow": "0 0 .0625rem rgba(0,0,0,0.7)",
"sapShell_Space_S": "0.5rem",
"sapShell_Space_M": "2rem",
"sapShell_Space_L": "2rem",
"sapShell_Space_XL": "3rem",
"sapShell_Gap_S": "0.5rem",
"sapShell_Gap_M": "1rem",
"sapShell_Gap_L": "1rem",
"sapShell_Gap_XL": "1rem",
"sapShell_GroupGap_S": "2rem",
"sapShell_GroupGap_M": "3rem",
"sapShell_GroupGap_L": "3rem",
"sapShell_GroupGap_XL": "3rem",
"sapAssistant_Color1": "#5d36ff",
"sapAssistant_Color2": "#a100c2",
"sapAssistant_BackgroundGradient": "linear-gradient(#5d36ff, #a100c2)",
"sapAssistant_Background": "#5d36ff",
"sapAssistant_BorderColor": "#5d36ff",
"sapAssistant_TextColor": "#fff",
"sapAssistant_Hover_Background": "#2800cf",
"sapAssistant_Hover_BorderColor": "#2800cf",
"sapAssistant_Hover_TextColor": "#fff",
"sapAssistant_Active_Background": "#1e009c",
"sapAssistant_Active_BorderColor": "#1e009c",
"sapAssistant_Active_TextColor": "#fff",
"sapAssistant_Question_Background": "#eae5ff",
"sapAssistant_Question_BorderColor": "#eae5ff",
"sapAssistant_Question_TextColor": "#232629",
"sapAssistant_Answer_Background": "#f4f4f4",
"sapAssistant_Answer_BorderColor": "#f4f4f4",
"sapAssistant_Answer_TextColor": "#232629",
"sapAvatar_1_Background": "#d08014",
"sapAvatar_1_BorderColor": "#d08014",
"sapAvatar_1_TextColor": "#fff",
"sapAvatar_1_Hover_Background": "#d08014",
"sapAvatar_2_Background": "#d04343",
"sapAvatar_2_BorderColor": "#d04343",
"sapAvatar_2_TextColor": "#fff",
"sapAvatar_2_Hover_Background": "#d04343",
"sapAvatar_3_Background": "#db1f77",
"sapAvatar_3_BorderColor": "#db1f77",
"sapAvatar_3_TextColor": "#fff",
"sapAvatar_3_Hover_Background": "#db1f77",
"sapAvatar_4_Background": "#c0399f",
"sapAvatar_4_BorderColor": "#c0399f",
"sapAvatar_4_TextColor": "#fff",
"sapAvatar_4_Hover_Background": "#c0399f",
"sapAvatar_5_Background": "#6367de",
"sapAvatar_5_BorderColor": "#6367de",
"sapAvatar_5_TextColor": "#fff",
"sapAvatar_5_Hover_Background": "#6367de",
"sapAvatar_6_Background": "#286eb4",
"sapAvatar_6_BorderColor": "#286eb4",
"sapAvatar_6_TextColor": "#fff",
"sapAvatar_6_Hover_Background": "#286eb4",
"sapAvatar_7_Background": "#0f828f",
"sapAvatar_7_BorderColor": "#0f828f",
"sapAvatar_7_TextColor": "#fff",
"sapAvatar_7_Hover_Background": "#0f828f",
"sapAvatar_8_Background": "#7ca10c",
"sapAvatar_8_BorderColor": "#7ca10c",
"sapAvatar_8_TextColor": "#fff",
"sapAvatar_8_Hover_Background": "#7ca10c",
"sapAvatar_9_Background": "#925ace",
"sapAvatar_9_BorderColor": "#925ace",
"sapAvatar_9_TextColor": "#fff",
"sapAvatar_9_Hover_Background": "#925ace",
"sapAvatar_10_Background": "#647987",
"sapAvatar_10_BorderColor": "#647987",
"sapAvatar_10_TextColor": "#fff",
"sapAvatar_10_Hover_Background": "#647987",
"sapAvatar_Lite_BorderColor": "transparent",
"sapAvatar_Lite_Background": "transparent",
"sapAvatar_Hover_BorderColor": "rgba(137,145,154,0.25)",
"sapButton_Background": "#fff",
"sapButton_BorderColor": "#0854a0",
"sapButton_BorderWidth": ".0625rem",
"sapButton_BorderCornerRadius": ".25rem",
"sapButton_TextColor": "#0854a0",
"sapButton_FontFamily": "\"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapButton_Hover_Background": "#ebf5fe",
"sapButton_Hover_BorderColor": "#0854a0",
"sapButton_Hover_TextColor": "#0854a0",
"sapButton_IconColor": "#0854a0",
"sapButton_Active_Background": "#0854a0",
"sapButton_Active_BorderColor": "#0854a0",
"sapButton_Active_TextColor": "#fff",
"sapButton_Emphasized_Background": "#0a6ed1",
"sapButton_Emphasized_BorderColor": "#0a6ed1",
"sapButton_Emphasized_BorderWidth": ".0625rem",
"sapButton_Emphasized_TextColor": "#fff",
"sapButton_Emphasized_FontFamily": "\"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapButton_Emphasized_Hover_Background": "#085caf",
"sapButton_Emphasized_Hover_BorderColor": "#085caf",
"sapButton_Emphasized_Hover_TextColor": "#fff",
"sapButton_Emphasized_Active_Background": "#0854a0",
"sapButton_Emphasized_Active_BorderColor": "#0854a0",
"sapButton_Emphasized_Active_TextColor": "#fff",
"sapButton_Emphasized_TextShadow": "transparent",
"sapButton_Reject_Background": "#fff",
"sapButton_Reject_BorderColor": "#bb0000",
"sapButton_Reject_TextColor": "#b00",
"sapButton_Reject_Hover_Background": "#ffebeb",
"sapButton_Reject_Hover_BorderColor": "#bb0000",
"sapButton_Reject_Hover_TextColor": "#b00",
"sapButton_Reject_Active_Background": "#a20000",
"sapButton_Reject_Active_BorderColor": "#a20000",
"sapButton_Reject_Active_TextColor": "#fff",
"sapButton_Reject_Selected_Background": "#a20000",
"sapButton_Reject_Selected_BorderColor": "#a20000",
"sapButton_Reject_Selected_TextColor": "#fff",
"sapButton_Reject_Selected_Hover_Background": "#b00",
"sapButton_Reject_Selected_Hover_BorderColor": "#b00",
"sapButton_Accept_Background": "#fff",
"sapButton_Accept_BorderColor": "#107e3e",
"sapButton_Accept_TextColor": "#107e3e",
"sapButton_Accept_Hover_Background": "#f1fdf6",
"sapButton_Accept_Hover_BorderColor": "#107e3e",
"sapButton_Accept_Hover_TextColor": "#107e3e",
"sapButton_Accept_Active_Background": "#0d6733",
"sapButton_Accept_Active_BorderColor": "#0d6733",
"sapButton_Accept_Active_TextColor": "#fff",
"sapButton_Accept_Selected_Background": "#0d6733",
"sapButton_Accept_Selected_BorderColor": "#0d6733",
"sapButton_Accept_Selected_TextColor": "#fff",
"sapButton_Accept_Selected_Hover_Background": "#107e3e",
"sapButton_Accept_Selected_Hover_BorderColor": "#107e3e",
"sapButton_Lite_Background": "transparent",
"sapButton_Lite_BorderColor": "transparent",
"sapButton_Lite_TextColor": "#0854a0",
"sapButton_Lite_Hover_Background": "#ebf5fe",
"sapButton_Lite_Hover_BorderColor": "#0854a0",
"sapButton_Lite_Hover_TextColor": "#0854a0",
"sapButton_Lite_Active_Background": "#0854a0",
"sapButton_Lite_Active_BorderColor": "#0854a0",
"sapButton_Selected_Background": "#0854a0",
"sapButton_Selected_BorderColor": "#0854a0",
"sapButton_Selected_TextColor": "#fff",
"sapButton_Selected_Hover_Background": "#095caf",
"sapButton_Selected_Hover_BorderColor": "#095caf",
"sapButton_Attention_Background": "#fff",
"sapButton_Attention_BorderColor": "#df6e0c",
"sapButton_Attention_TextColor": "#232629",
"sapButton_Attention_Hover_Background": "#fef7f1",
"sapButton_Attention_Hover_BorderColor": "#df6e0c",
"sapButton_Attention_Hover_TextColor": "#232629",
"sapButton_Attention_Active_Background": "#f3801c",
"sapButton_Attention_Active_BorderColor": "#f3801c",
"sapButton_Attention_Active_TextColor": "#fff",
"sapButton_Attention_Selected_Background": "#f3801c",
"sapButton_Attention_Selected_BorderColor": "#f3801c",
"sapButton_Attention_Selected_TextColor": "#fff",
"sapButton_Attention_Selected_Hover_Background": "#f48e34",
"sapButton_Attention_Selected_Hover_BorderColor": "#f48e34",
"sapButton_Negative_Background": "#bb0000",
"sapButton_Negative_BorderColor": "#bb0000",
"sapButton_Negative_TextColor": "#fff",
"sapButton_Negative_Hover_Background": "#970000",
"sapButton_Negative_Hover_BorderColor": "#970000",
"sapButton_Negative_Hover_TextColor": "#fff",
"sapButton_Negative_Active_Background": "#800",
"sapButton_Negative_Active_BorderColor": "#800",
"sapButton_Negative_Active_TextColor": "#fff",
"sapButton_Critical_Background": "#df6e0c",
"sapButton_Critical_BorderColor": "#df6e0c",
"sapButton_Critical_TextColor": "#fff",
"sapButton_Critical_Hover_Background": "#f3801c",
"sapButton_Critical_Hover_BorderColor": "#f3801c",
"sapButton_Critical_Hover_TextColor": "#fff",
"sapButton_Critical_Active_Background": "#f5933e",
"sapButton_Critical_Active_BorderColor": "#f5933e",
"sapButton_Critical_Active_TextColor": "#fff",
"sapButton_Success_Background": "#107e3e",
"sapButton_Success_BorderColor": "#107e3e",
"sapButton_Success_TextColor": "#fff",
"sapButton_Success_Hover_Background": "#0c5e2e",
"sapButton_Success_Hover_BorderColor": "#0c5e2e",
"sapButton_Success_Hover_TextColor": "#fff",
"sapButton_Success_Active_Background": "#0a5128",
"sapButton_Success_Active_BorderColor": "#0a5128",
"sapButton_Success_Active_TextColor": "#fff",
"sapButton_Information_Background": "#0a6ed1",
"sapButton_Information_BorderColor": "#0a6ed1",
"sapButton_Information_TextColor": "#fff",
"sapButton_Information_Hover_Background": "#0961b9",
"sapButton_Information_Hover_BorderColor": "#0961b9",
"sapButton_Information_Hover_TextColor": "#fff",
"sapButton_Information_Active_Background": "#0854a0",
"sapButton_Information_Active_BorderColor": "#0854a0",
"sapButton_Information_Active_TextColor": "#fff",
"sapButton_Neutral_Background": "#6a6d70",
"sapButton_Neutral_BorderColor": "#6a6d70",
"sapButton_Neutral_TextColor": "#fff",
"sapButton_Neutral_Hover_Background": "#595b5e",
"sapButton_Neutral_Hover_BorderColor": "#595b5e",
"sapButton_Neutral_Hover_TextColor": "#fff",
"sapButton_Neutral_Active_Background": "#515456",
"sapButton_Neutral_Active_BorderColor": "#515456",
"sapButton_Neutral_Active_TextColor": "#fff",
"sapButton_Track_Background": "#ededed",
"sapButton_Track_BorderColor": "#89919a",
"sapButton_Track_TextColor": "#232629",
"sapButton_Track_Hover_Background": "#ededed",
"sapButton_Track_Hover_BorderColor": "#0854a0",
"sapButton_Track_Selected_Background": "#ebf5fe",
"sapButton_Track_Selected_BorderColor": "#0854a0",
"sapButton_Track_Selected_TextColor": "#232629",
"sapButton_Track_Selected_Hover_Background": "#ebf5fe",
"sapButton_Track_Selected_Hover_BorderColor": "#095caf",
"sapButton_Handle_Background": "#fff",
"sapButton_Handle_BorderColor": "#89919a",
"sapButton_Handle_TextColor": "#232629",
"sapButton_Handle_Hover_Background": "#ebf5fe",
"sapButton_Handle_Hover_BorderColor": "#0854a0",
"sapButton_Handle_Selected_Background": "#0854a0",
"sapButton_Handle_Selected_BorderColor": "#0854a0",
"sapButton_Handle_Selected_TextColor": "#fff",
"sapButton_Handle_Selected_Hover_Background": "#095caf",
"sapButton_Handle_Selected_Hover_BorderColor": "#095caf",
"sapButton_Track_Negative_Background": "#ffebeb",
"sapButton_Track_Negative_BorderColor": "#bb0000",
"sapButton_Track_Negative_TextColor": "#b00",
"sapButton_Track_Negative_Hover_Background": "#ffebeb",
"sapButton_Track_Negative_Hover_BorderColor": "#bb0000",
"sapButton_Handle_Negative_Background": "#fff",
"sapButton_Handle_Negative_BorderColor": "#bb0000",
"sapButton_Handle_Negative_TextColor": "#b00",
"sapButton_Handle_Negative_Hover_Background": "#ffebeb",
"sapButton_Handle_Negative_Hover_BorderColor": "#bb0000",
"sapButton_Track_Positive_Background": "#f1fdf6",
"sapButton_Track_Positive_BorderColor": "#107e3e",
"sapButton_Track_Positive_TextColor": "#107e3e",
"sapButton_Track_Positive_Hover_Background": "#f1fdf6",
"sapButton_Track_Positive_Hover_BorderColor": "#107e3e",
"sapButton_Handle_Positive_Background": "#fff",
"sapButton_Handle_Positive_BorderColor": "#107e3e",
"sapButton_Handle_Positive_TextColor": "#107e3e",
"sapButton_Handle_Positive_Hover_Background": "#f1fdf6",
"sapButton_Handle_Positive_Hover_BorderColor": "#107e3e",
"sapButton_TokenBackground": "#fafafa",
"sapButton_TokenBorderColor": "#c2c2c2",
"sapButton_TokenBorderCornerRadius": ".25rem",
"sapButton_Selected_TokenBorderWidth": "0",
"sapButton_ReadOnly_TokenBackground": "#fafafa",
"sapButton_Segment_BorderCornerRadius": "0",
"sapField_Background": "#fff",
"sapField_BackgroundStyle": "none",
"sapField_TextColor": "#232629",
"sapField_PlaceholderTextColor": "#74777a",
"sapField_BorderColor": "#89919a",
"sapField_HelpBackground": "#fff",
"sapField_BorderWidth": ".0625rem",
"sapField_BorderStyle": "solid",
"sapField_BorderCornerRadius": ".125rem",
"sapField_Shadow": "none",
"sapField_Hover_Background": "#fff",
"sapField_Hover_BackgroundStyle": "none",
"sapField_Hover_BorderColor": "#0854a0",
"sapField_Hover_HelpBackground": "#ebf5fe",
"sapField_Hover_Shadow": "none",
"sapField_Hover_InvalidShadow": "none",
"sapField_Hover_WarningShadow": "none",
"sapField_Hover_SuccessShadow": "none",
"sapField_Hover_InformationShadow": "none",
"sapField_Active_BorderColor": "#0854a0",
"sapField_Focus_Background": "#fff",
"sapField_Focus_BorderColor": "#000",
"sapField_Focus_HelpBackground": "#fff",
"sapField_ReadOnly_Background": "#f8f8f8",
"sapField_ReadOnly_BackgroundStyle": "none",
"sapField_ReadOnly_BorderColor": "#89919a",
"sapField_ReadOnly_BorderStyle": "solid",
"sapField_ReadOnly_HelpBackground": "#f8f8f8",
"sapField_RequiredColor": "#ce3b3b",
"sapField_InvalidColor": "#bb0000",
"sapField_InvalidBackground": "#fff",
"sapField_InvalidBackgroundStyle": "none",
"sapField_InvalidBorderWidth": ".125rem",
"sapField_InvalidBorderStyle": "solid",
"sapField_InvalidShadow": "none",
"sapField_WarningColor": "#df6e0c",
"sapField_WarningBackground": "#fff",
"sapField_WarningBackgroundStyle": "none",
"sapField_WarningBorderWidth": ".125rem",
"sapField_WarningBorderStyle": "solid",
"sapField_WarningShadow": "none",
"sapField_SuccessColor": "#107e3e",
"sapField_SuccessBackground": "#fff",
"sapField_SuccessBackgroundStyle": "none",
"sapField_SuccessBorderWidth": ".0625rem",
"sapField_SuccessBorderStyle": "solid",
"sapField_SuccessShadow": "none",
"sapField_InformationColor": "#0a6ed1",
"sapField_InformationBackground": "#fff",
"sapField_InformationBackgroundStyle": "none",
"sapField_InformationBorderWidth": ".125rem",
"sapField_InformationBorderStyle": "solid",
"sapField_InformationShadow": "none",
"sapField_Selector_Hover_Background": "#fff",
"sapField_Selector_Hover_InvalidBackground": "#fff",
"sapField_Selector_Hover_WarningBackground": "#fff",
"sapField_Selector_Hover_SuccessBackground": "#fff",
"sapField_Selector_Hover_InformationBackground": "#fff",
"sapField_Picker_BorderColor": "#89919a",
"sapField_Picker_BorderWidth": ".0625rem",
"sapField_Selector_BorderStyle": "solid",
"sapField_Selector_ReadOnly_BorderStyle": "solid",
"sapField_Selector_InvalidBorderStyle": "solid",
"sapField_Selector_WarningBorderStyle": "solid",
"sapField_Selector_SuccessBorderStyle": "solid",
"sapField_Selector_InformationBorderStyle": "solid",
"sapGroup_TitleBorderWidth": ".0625rem",
"sapGroup_TitleBackground": "transparent",
"sapGroup_TitleBorderColor": "#d9d9d9",
"sapGroup_TitleTextColor": "#232629",
"sapGroup_Title_FontSize": "1.125rem",
"sapGroup_ContentBackground": "#fff",
"sapGroup_ContentBorderColor": "#d9d9d9",
"sapGroup_BorderWidth": ".0625rem",
"sapGroup_BorderCornerRadius": "0",
"sapGroup_FooterBackground": "transparent",
"sapToolbar_Background": "transparent",
"sapToolbar_SeparatorColor": "#d9d9d9",
"sapList_HeaderBackground": "#f2f2f2",
"sapList_HeaderBorderColor": "#e5e5e5",
"sapList_HeaderTextColor": "#232629",
"sapList_BorderColor": "#e5e5e5",
"sapList_BorderWidth": ".0625rem",
"sapList_TextColor": "#232629",
"sapList_Active_TextColor": "#fff",
"sapList_Active_Background": "#0854a0",
"sapList_SelectionBackgroundColor": "#e5f0fa",
"sapList_SelectionBorderColor": "#0854a0",
"sapList_Hover_SelectionBackground": "#d8e9f8",
"sapList_Background": "#fff",
"sapList_Hover_Background": "#ededed",
"sapList_AlternatingBackground": "#f2f2f2",
"sapList_GroupHeaderBackground": "#fff",
"sapList_GroupHeaderBorderColor": "#d9d9d9",
"sapList_GroupHeaderTextColor": "#232629",
"sapList_TableGroupHeaderBackground": "#efefef",
"sapList_TableGroupHeaderBorderColor": "#d9d9d9",
"sapList_TableGroupHeaderTextColor": "#232629",
"sapList_FooterBackground": "#fafafa",
"sapList_FooterTextColor": "#232629",
"sapList_TableFooterBorder": "#d9d9d9",
"sapList_TableFixedBorderColor": "#8c8c8c",
"sapList_TableFixedColumnBorderWidth": ".0625rem",
"sapList_TableFixedRowBorderWidth": ".125rem",
"sapMessage_BorderWidth": ".0625rem",
"sapMessage_ErrorBorderColor": "#bb0000",
"sapMessage_WarningBorderColor": "#df6e0c",
"sapMessage_SuccessBorderColor": "#107e3e",
"sapMessage_InformationBorderColor": "#0a6ed1",
"sapMessage_Button_Hover_Background": "rgba(235,245,254,0.2)",
"sapPopover_BorderCornerRadius": ".25rem",
"sapProgress_Background": "#fff",
"sapProgress_BorderColor": "#89919a",
"sapProgress_TextColor": "#232629",
"sapProgress_FontSize": ".75rem",
"sapProgress_NegativeBackground": "#fff",
"sapProgress_NegativeBorderColor": "#89919a",
"sapProgress_NegativeTextColor": "#232629",
"sapProgress_CriticalBackground": "#fff",
"sapProgress_CriticalBorderColor": "#89919a",
"sapProgress_CriticalTextColor": "#232629",
"sapProgress_PositiveBackground": "#fff",
"sapProgress_PositiveBorderColor": "#89919a",
"sapProgress_PositiveTextColor": "#232629",
"sapProgress_InformationBackground": "#fff",
"sapProgress_InformationBorderColor": "#89919a",
"sapProgress_InformationTextColor": "#232629",
"sapProgress_Value_Background": "#6a6d70",
"sapProgress_Value_BorderColor": "#89919a",
"sapProgress_Value_TextColor": "#232629",
"sapProgress_Value_NegativeBackground": "#bb0000",
"sapProgress_Value_NegativeBorderColor": "#fff",
"sapProgress_Value_NegativeTextColor": "#232629",
"sapProgress_Value_CriticalBackground": "#df6e0c",
"sapProgress_Value_CriticalBorderColor": "#fff",
"sapProgress_Value_CriticalTextColor": "#232629",
"sapProgress_Value_PositiveBackground": "#107e3e",
"sapProgress_Value_PositiveBorderColor": "#fff",
"sapProgress_Value_PositiveTextColor": "#232629",
"sapProgress_Value_InformationBackground": "#0a6ed1",
"sapProgress_Value_InformationBorderColor": "#fff",
"sapProgress_Value_InformationTextColor": "#232629",
"sapScrollBar_FaceColor": "#949494",
"sapScrollBar_TrackColor": "#fff",
"sapScrollBar_BorderColor": "#949494",
"sapScrollBar_SymbolColor": "#0854a0",
"sapScrollBar_Dimension": ".75rem",
"sapScrollBar_Hover_FaceColor": "#8c8c8c",
"sapSlider_Background": "#89919a",
"sapSlider_BorderColor": "#89919a",
"sapSlider_Selected_Background": "#0854a0",
"sapSlider_Selected_BorderColor": "#0854a0",
"sapSlider_Selected_Dimension": ".125rem",
"sapSlider_HandleBackground": "#fff",
"sapSlider_HandleBorderColor": "#89919a",
"sapSlider_RangeHandleBackground": "transparent",
"sapSlider_Hover_HandleBackground": "#ebf5fe",
"sapSlider_Hover_HandleBorderColor": "#0854a0",
"sapSlider_Hover_RangeHandleBackground": "#ebf5fe",
"sapSlider_Active_HandleBackground": "#0854a0",
"sapSlider_Active_HandleBorderColor": "#0854a0",
"sapSlider_Active_RangeHandleBackground": "transparent",
"sapPageHeader_Background": "#fff",
"sapPageHeader_BorderColor": "#d9d9d9",
"sapPageHeader_TextColor": "#232629",
"sapPageFooter_Background": "#fff",
"sapPageFooter_BorderColor": "#d9d9d9",
"sapPageFooter_TextColor": "#232629",
"sapInfobar_Background": "#0f828f",
"sapInfobar_Hover_Background": "#0e7581",
"sapInfobar_Active_Background": "#0a545c",
"sapInfobar_NonInteractive_Background": "#e6e6e6",
"sapInfobar_TextColor": "#fff",
"sapObjectHeader_Background": "#fff",
"sapObjectHeader_Hover_Background": "#ededed",
"sapObjectHeader_BorderColor": "#d9d9d9",
"sapObjectHeader_Title_TextColor": "#232629",
"sapObjectHeader_Title_FontSize": "1.25rem",
"sapObjectHeader_Title_SnappedFontSize": "1.25rem",
"sapObjectHeader_Title_FontFamily": "\"72\", \"72full\", Arial, Helvetica, sans-serif",
"sapObjectHeader_Subtitle_TextColor": "#6a6d70",
"sapBlockLayer_Background": "#000",
"sapBlockLayer_Opacity": "0.2",
"sapTab_TextColor": "#6a6d70",
"sapTab_ForegroundColor": "#0854a0",
"sapTab_IconColor": "#0854a0",
"sapTab_Background": "#fff",
"sapTab_Selected_TextColor": "#0854a0",
"sapTab_Selected_IconColor": "#fff",
"sapTab_Selected_Background": "#0854a0",
"sapTab_Selected_Indicator_Dimension": ".1875rem",
"sapTab_Positive_TextColor": "#107e3e",
"sapTab_Positive_ForegroundColor": "#107e3e",
"sapTab_Positive_IconColor": "#107e3e",
"sapTab_Positive_Selected_TextColor": "#107e3e",
"sapTab_Positive_Selected_IconColor": "#fff",
"sapTab_Positive_Selected_Background": "#107e3e",
"sapTab_Negative_TextColor": "#bb0000",
"sapTab_Negative_ForegroundColor": "#bb0000",
"sapTab_Negative_IconColor": "#b00",
"sapTab_Negative_Selected_TextColor": "#bb0000",
"sapTab_Negative_Selected_IconColor": "#fff",
"sapTab_Negative_Selected_Background": "#bb0000",
"sapTab_Critical_TextColor": "#b3590a",
"sapTab_Critical_ForegroundColor": "#df6e0c",
"sapTab_Critical_IconColor": "#df6e0c",
"sapTab_Critical_Selected_TextColor": "#b3590a",
"sapTab_Critical_Selected_IconColor": "#fff",
"sapTab_Critical_Selected_Background": "#df6e0c",
"sapTab_Neutral_TextColor": "#6a6d70",
"sapTab_Neutral_ForegroundColor": "#6a6d70",
"sapTab_Neutral_IconColor": "#6a6d70",
"sapTab_Neutral_Selected_TextColor": "#6a6d70",
"sapTab_Neutral_Selected_IconColor": "#fff",
"sapTab_Neutral_Selected_Background": "#6a6d70",
"sapTile_Background": "#fff",
"sapTile_Hover_Background": "#f5f5f5",
"sapTile_Active_Background": "#f5f5f5",
"sapTile_BorderColor": "transparent",
"sapTile_BorderCornerRadius": ".25rem",
"sapTile_TitleTextColor": "#232629",
"sapTile_TextColor": "#6a6d70",
"sapTile_IconColor": "#5a7da0",
"sapTile_SeparatorColor": "#ccc",
"sapTile_Interactive_BorderColor": "#b3b3b3",
"sapTile_OverlayBackground": "rgba(0,0,0,0.8)",
"sapTile_OverlayForegroundColor": "#fff",
"sapTile_Hover_ContentBackground": "#f5f5f5",
"sapTile_Active_ContentBackground": "#f5f5f5",
"sapAccentColor1": "#d08014",
"sapAccentColor2": "#d04343",
"sapAccentColor3": "#db1f77",
"sapAccentColor4": "#c0399f",
"sapAccentColor5": "#6367de",
"sapAccentColor6": "#286eb4",
"sapAccentColor7": "#0f828f",
"sapAccentColor8": "#7ca10c",
"sapAccentColor9": "#925ace",
"sapAccentColor10": "#647987",
"sapAccentBackgroundColor1": "#fff3b8",
"sapAccentBackgroundColor2": "#ffd0e7",
"sapAccentBackgroundColor3": "#fff0fa",
"sapAccentBackgroundColor4": "#ffdcf3",
"sapAccentBackgroundColor5": "#ded3ff",
"sapAccentBackgroundColor6": "#d1efff",
"sapAccentBackgroundColor7": "#c2fcee",
"sapAccentBackgroundColor8": "#ebf5cb",
"sapAccentBackgroundColor9": "#dafdf5",
"sapAccentBackgroundColor10": "#eaecee",
"sapIndicationColor_1": "#880000",
"sapIndicationColor_1_Background": "#880000",
"sapIndicationColor_1_BorderColor": "#880000",
"sapIndicationColor_1_TextColor": "#fff",
"sapIndicationColor_1_Hover_Background": "#6f0000",
"sapIndicationColor_1_Active_Background": "#500",
"sapIndicationColor_1_Active_BorderColor": "#880000",
"sapIndicationColor_1_Active_TextColor": "#fff",
"sapIndicationColor_1_Selected_Background": "#500",
"sapIndicationColor_1_Selected_BorderColor": "#880000",
"sapIndicationColor_1_Selected_TextColor": "#fff",
"sapIndicationColor_1b": "#fb9d9d",
"sapIndicationColor_1b_TextColor": "#830707",
"sapIndicationColor_1b_Background": "#fb9d9d",
"sapIndicationColor_1b_BorderColor": "#fb9d9d",
"sapIndicationColor_1b_Hover_Background": "#fa8585",
"sapIndicationColor_2": "#bb0000",
"sapIndicationColor_2_Background": "#bb0000",
"sapIndicationColor_2_BorderColor": "#bb0000",
"sapIndicationColor_2_TextColor": "#fff",
"sapIndicationColor_2_Hover_Background": "#a20000",
"sapIndicationColor_2_Active_Background": "#800",
"sapIndicationColor_2_Active_BorderColor": "#bb0000",
"sapIndicationColor_2_Active_TextColor": "#fff",
"sapIndicationColor_2_Selected_Background": "#800",
"sapIndicationColor_2_Selected_BorderColor": "#bb0000",
"sapIndicationColor_2_Selected_TextColor": "#fff",
"sapIndicationColor_2b": "#fcc4c4",
"sapIndicationColor_2b_TextColor": "#a90909",
"sapIndicationColor_2b_Background": "#fcc4c4",
"sapIndicationColor_2b_BorderColor": "#fcc4c4",
"sapIndicationColor_2b_Hover_Background": "#fbacac",
"sapIndicationColor_3": "#df6e0c",
"sapIndicationColor_3_Background": "#df6e0c",
"sapIndicationColor_3_BorderColor": "#df6e0c",
"sapIndicationColor_3_TextColor": "#fff",
"sapIndicationColor_3_Hover_Background": "#d0670b",
"sapIndicationColor_3_Active_Background": "#c2600a",
"sapIndicationColor_3_Active_BorderColor": "#df6e0c",
"sapIndicationColor_3_Active_TextColor": "#fff",
"sapIndicationColor_3_Selected_Background": "#c2600a",
"sapIndicationColor_3_Selected_BorderColor": "#df6e0c",
"sapIndicationColor_3_Selected_TextColor": "#fff",
"sapIndicationColor_3b": "#ffdfc3",
"sapIndicationColor_3b_TextColor": "#a44d00",
"sapIndicationColor_3b_Background": "#ffdfc3",
"sapIndicationColor_3b_BorderColor": "#ffdfc3",
"sapIndicationColor_3b_Hover_Background": "#ffd1a9",
"sapIndicationColor_4": "#107e3e",
"sapIndicationColor_4_Background": "#107e3e",
"sapIndicationColor_4_BorderColor": "#107e3e",
"sapIndicationColor_4_TextColor": "#fff",
"sapIndicationColor_4_Hover_Background": "#0d6733",
"sapIndicationColor_4_Active_Background": "#0a5128",
"sapIndicationColor_4_Active_BorderColor": "#107e3e",
"sapIndicationColor_4_Active_TextColor": "#fff",
"sapIndicationColor_4_Selected_Background": "#0a5128",
"sapIndicationColor_4_Selected_BorderColor": "#107e3e",
"sapIndicationColor_4_Selected_TextColor": "#fff",
"sapIndicationColor_4b": "#bae8bc",
"sapIndicationColor_4b_TextColor": "#256f28",
"sapIndicationColor_4b_Background": "#bae8bc",
"sapIndicationColor_4b_BorderColor": "#bae8bc",
"sapIndicationColor_4b_Hover_Background": "#a7e2a9",
"sapIndicationColor_5": "#0a6ed1",
"sapIndicationColor_5_Background": "#0a6ed1",
"sapIndicationColor_5_BorderColor": "#0a6ed1",
"sapIndicationColor_5_TextColor": "#fff",
"sapIndicationColor_5_Hover_Background": "#0961b9",
"sapIndicationColor_5_Active_Background": "#0854a0",
"sapIndicationColor_5_Active_BorderColor": "#0a6ed1",
"sapIndicationColor_5_Active_TextColor": "#fff",
"sapIndicationColor_5_Selected_Background": "#0854a0",
"sapIndicationColor_5_Selected_BorderColor": "#0a6ed1",
"sapIndicationColor_5_Selected_TextColor": "#fff",
"sapIndicationColor_5b": "#d9ebff",
"sapIndicationColor_5b_TextColor": "#0067d9",
"sapIndicationColor_5b_Background": "#d9ebff",
"sapIndicationColor_5b_BorderColor": "#d9ebff",
"sapIndicationColor_5b_Hover_Background": "#c0deff",
"sapIndicationColor_6": "#0f828f",
"sapIndicationColor_6_Background": "#0f828f",
"sapIndicationColor_6_BorderColor": "#0f828f",
"sapIndicationColor_6_TextColor": "#fff",
"sapIndicationColor_6_Hover_Background": "#0d6d78",
"sapIndicationColor_6_Active_Background": "#0a5861",
"sapIndicationColor_6_Active_BorderColor": "#0f828f",
"sapIndicationColor_6_Active_TextColor": "#fff",
"sapIndicationColor_6_Selected_Background": "#0a5861",
"sapIndicationColor_6_Selected_BorderColor": "#0f828f",
"sapIndicationColor_6_Selected_TextColor": "#fff",
"sapIndicationColor_6b": "#cdf5ec",
"sapIndicationColor_6b_TextColor": "#156b58",
"sapIndicationColor_6b_Background": "#cdf5ec",
"sapIndicationColor_6b_BorderColor": "#cdf5ec",
"sapIndicationColor_6b_Hover_Background": "#b8f1e4",
"sapIndicationColor_7": "#925ace",
"sapIndicationColor_7_Background": "#925ace",
"sapIndicationColor_7_BorderColor": "#925ace",
"sapIndicationColor_7_TextColor": "#fff",
"sapIndicationColor_7_Hover_Background": "#8546c8",
"sapIndicationColor_7_Active_Background": "#7838bd",
"sapIndicationColor_7_Active_BorderColor": "#925ace",
"sapIndicationColor_7_Active_TextColor": "#fff",
"sapIndicationColor_7_Selected_Background": "#7838bd",
"sapIndicationColor_7_Selected_BorderColor": "#925ace",
"sapIndicationColor_7_Selected_TextColor": "#fff",
"sapIndicationColor_7b": "#e2dbff",
"sapIndicationColor_7b_TextColor": "#5f38ff",
"sapIndicationColor_7b_Background": "#e2dbff",
"sapIndicationColor_7b_BorderColor": "#e2dbff",
"sapIndicationColor_7b_Hover_Background": "#cdc2ff",
"sapIndicationColor_8": "#c0399f",
"sapIndicationColor_8_Background": "#c0399f",
"sapIndicationColor_8_BorderColor": "#c0399f",
"sapIndicationColor_8_TextColor": "#fff",
"sapIndicationColor_8_Hover_Background": "#ac338f",
"sapIndicationColor_8_Active_Background": "#992d7e",
"sapIndicationColor_8_Active_BorderColor": "#c0399f",
"sapIndicationColor_8_Active_TextColor": "#fff",
"sapIndicationColor_8_Selected_Background": "#992d7e",
"sapIndicationColor_8_Selected_BorderColor": "#c0399f",
"sapIndicationColor_8_Selected_TextColor": "#fff",
"sapIndicationColor_8b": "#f8d6ff",
"sapIndicationColor_8b_TextColor": "#a100c2",
"sapIndicationColor_8b_Background": "#f8d6ff",
"sapIndicationColor_8b_BorderColor": "#f8d6ff",
"sapIndicationColor_8b_Hover_Background": "#f4bdff",
"sapIndicationColor_9": "#1d2d3e",
"sapIndicationColor_9_Background": "#1d2d3e",
"sapIndicationColor_9_BorderColor": "#1d2d3e",
"sapIndicationColor_9_TextColor": "#fff",
"sapIndicationColor_9_Hover_Background": "#15202d",
"sapIndicationColor_9_Active_Background": "#0d141b",
"sapIndicationColor_9_Active_BorderColor": "#1d2d3e",
"sapIndicationColor_9_Active_TextColor": "#fff",
"sapIndicationColor_9_Selected_Background": "#0d141b",
"sapIndicationColor_9_Selected_BorderColor": "#1d2d3e",
"sapIndicationColor_9_Selected_TextColor": "#fff",
"sapIndicationColor_9b": "#fff",
"sapIndicationColor_9b_TextColor": "#2e2e2e",
"sapIndicationColor_9b_Background": "#fff",
"sapIndicationColor_9b_BorderColor": "#d9d9d9",
"sapIndicationColor_9b_Hover_Background": "#f2f2f2",
"sapIndicationColor_10": "#45484a",
"sapIndicationColor_10_Background": "#45484a",
"sapIndicationColor_10_BorderColor": "#45484a",
"sapIndicationColor_10_TextColor": "#fff",
"sapIndicationColor_10_Hover_Background": "#393b3d",
"sapIndicationColor_10_Active_Background": "#2c2e30",
"sapIndicationColor_10_Active_BorderColor": "#45484a",
"sapIndicationColor_10_Active_TextColor": "#fff",
"sapIndicationColor_10_Selected_Background": "#2c2e30",
"sapIndicationColor_10_Selected_BorderColor": "#45484a",
"sapIndicationColor_10_Selected_TextColor": "#fff",
"sapIndicationColor_10b": "#eaecee",
"sapIndicationColor_10b_TextColor": "#464646",
"sapIndicationColor_10b_Background": "#eaecee",
"sapIndicationColor_10b_BorderColor": "#eaecee",
"sapIndicationColor_10b_Hover_Background": "#dcdfe3",
"sapLegend_WorkingBackground": "#fafafa",
"sapLegend_NonWorkingBackground": "#dedede",
"sapLegend_CurrentDateTime": "#c0399f",
"sapLegendColor1": "#d58215",
"sapLegendColor2": "#dc5b5b",
"sapLegendColor3": "#db1f77",
"sapLegendColor4": "#9b3b3b",
"sapLegendColor5": "#cf5db3",
"sapLegendColor6": "#286eb4",
"sapLegendColor7": "#1193a2",
"sapLegendColor8": "#8b9668",
"sapLegendColor9": "#647987",
"sapLegendColor10": "#892971",
"sapLegendColor11": "#725a3a",
"sapLegendColor12": "#bb2f2f",
"sapLegendColor13": "#bc1b66",
"sapLegendColor14": "#8b714f",
"sapLegendColor15": "#606190",
"sapLegendColor16": "#597da1",
"sapLegendColor17": "#49797e",
"sapLegendColor18": "#687a33",
"sapLegendColor19": "#295989",
"sapLegendColor20": "#5154bd",
"sapLegendBackgroundColor1": "#fdf3e7",
"sapLegendBackgroundColor2": "#faeaea",
"sapLegendBackgroundColor3": "#fce9f2",
"sapLegendBackgroundColor4": "#f8ecec",
"sapLegendBackgroundColor5": "#f9ebf5",
"sapLegendBackgroundColor6": "#ebf3fa",
"sapLegendBackgroundColor7": "#e8fbfd",
"sapLegendBackgroundColor8": "#f3f4ef",
"sapLegendBackgroundColor9": "#f1f3f4",
"sapLegendBackgroundColor10": "#f9ebf6",
"sapLegendBackgroundColor11": "#f6f2ed",
"sapLegendBackgroundColor12": "#faeaea",
"sapLegendBackgroundColor13": "#fce9f2",
"sapLegendBackgroundColor14": "#f5f2ee",
"sapLegendBackgroundColor15": "#f0f0f5",
"sapLegendBackgroundColor16": "#eff2f6",
"sapLegendBackgroundColor17": "#eff5f6",
"sapLegendBackgroundColor18": "#f5f7ed",
"sapLegendBackgroundColor19": "#ebf2f9",
"sapLegendBackgroundColor20": "#ecedf8",
"sapChart_Background": "transparent",
"sapChart_ContrastTextShadow": "0 0 0.0625rem rgba(0,0,0,0.7)",
"sapChart_ContrastShadowColor": "#fff",
"sapChart_ContrastLineColor": "#fff",
"sapChart_LineColor_1": "#e1e3e5",
"sapChart_LineColor_2": "#8a9199",
"sapChart_LineColor_3": "#000",
"sapChart_Choropleth_Background": "#f7f7f8",
"sapChart_ChoroplethRegion_Background": "#848f94",
"sapChart_ChoroplethRegion_BorderColor": "#f7f7f8",
"sapChart_Data_TextColor": "#000",
"sapChart_Data_ContrastTextColor": "#fff",
"sapChart_Data_InteractiveColor": "#000",