-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathThemeColors.java
More file actions
1652 lines (1581 loc) · 112 KB
/
Copy pathThemeColors.java
File metadata and controls
1652 lines (1581 loc) · 112 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
package org.telegram.ui.ActionBar;
import static org.telegram.ui.ActionBar.Theme.*;
import android.graphics.Color;
import android.util.SparseArray;
import androidx.core.graphics.ColorUtils;
import java.util.HashMap;
public class ThemeColors {
public static final int TELEGRAM_COLOR = 0xFF229AF0; // -14509328
public static final int TELEGRAM_COLOR_TEXT = 0xFF298ACF; // -14054705
public static final int DEFAULT_BLACK_TEXT = 0xFF1A1D21; // -15065823
private static SparseArray<String> colorKeysMap;
private static HashMap<String, Integer> colorKeysStringMap;
public static int[] createDefaultColors() {
int[] defaultColors = new int[Theme.colorsCount];
defaultColors[key_wallpaperFileOffset] = 0;
defaultColors[key_dialogBackground] = 0xffffffff;
defaultColors[key_dialogBackgroundGray] = 0xfff0f0f0;
defaultColors[key_dialogTextBlack] = DEFAULT_BLACK_TEXT;
defaultColors[key_dialogTextLink] = 0xff2678b6;
defaultColors[key_dialogLinkSelection] = 0x3362a9e3;
defaultColors[key_dialogTextBlue] = 0xff2f8cc9;
defaultColors[key_dialogTextBlue2] = 0xff3a95d5;
defaultColors[key_dialogTextBlue4] = 0xff19a7e8;
defaultColors[key_dialogTextGray] = 0xff348bc1;
defaultColors[key_dialogTextGray2] = 0xff757575;
defaultColors[key_dialogTextGray3] = 0xff999999;
defaultColors[key_dialogTextGray4] = 0xffb3b3b3;
defaultColors[key_dialogTextHint] = 0xff979797;
defaultColors[key_dialogIcon] = DEFAULT_BLACK_TEXT;
defaultColors[key_dialogGrayLine] = 0xffd2d2d2;
defaultColors[key_dialogTopBackground] = TELEGRAM_COLOR_TEXT;
defaultColors[key_dialogInputField] = 0xffdbdbdb;
defaultColors[key_dialogInputFieldActivated] = TELEGRAM_COLOR;
defaultColors[key_dialogCheckboxSquareBackground] = TELEGRAM_COLOR;
defaultColors[key_dialogCheckboxSquareCheck] = 0xffffffff;
defaultColors[key_dialogCheckboxSquareUnchecked] = 0xff737373;
defaultColors[key_dialogCheckboxSquareDisabled] = 0xffb0b0b0;
defaultColors[key_dialogRadioBackground] = 0xffb3b3b3;
defaultColors[key_dialogRadioBackgroundChecked] = TELEGRAM_COLOR;
defaultColors[key_dialogLineProgress] = 0xff527da3;
defaultColors[key_dialogLineProgressBackground] = 0xffdbdbdb;
defaultColors[key_dialogButton] = TELEGRAM_COLOR_TEXT;
defaultColors[key_dialogButtonSelector] = 0x0f000000;
defaultColors[key_dialogScrollGlow] = 0xfff5f6f7;
defaultColors[key_dialogRoundCheckBox] = TELEGRAM_COLOR;
defaultColors[key_dialogRoundCheckBoxCheck] = 0xffffffff;
defaultColors[key_dialog_inlineProgressBackground] = 0xf6f0f2f5;
defaultColors[key_dialog_inlineProgress] = 0xff6b7378;
defaultColors[key_dialogSearchBackground] = 0xfff2f4f5;
defaultColors[key_dialogSearchHint] = 0xff98a0a7;
defaultColors[key_dialogSearchIcon] = 0xffa1a8af;
defaultColors[key_dialogSearchText] = 0xff222222;
defaultColors[key_dialogFloatingButton] = TELEGRAM_COLOR;
defaultColors[key_dialogFloatingButtonPressed] = 0x0f000000;
defaultColors[key_dialogFloatingIcon] = 0xffffffff;
defaultColors[key_dialogShadowLine] = 0x12000000;
defaultColors[key_dialogEmptyImage] = 0xff9fa4a8;
defaultColors[key_dialogEmptyText] = 0xff8c9094;
defaultColors[key_dialogSwipeRemove] = 0xffe56555;
defaultColors[key_dialogReactionMentionBackground] = 0xffeb5e5e;
defaultColors[key_dialogCardShadow] = 0x17000000;
defaultColors[key_dialogGiftsBackground] = 0xffF5F6F7;
defaultColors[key_dialogGiftsTabText] = 0xFF56595C;
defaultColors[key_bot_loadingIcon] = 0xFFF2F2F2;
defaultColors[key_gift_ribbon] = 0xFF46A4F2;
defaultColors[key_gift_ribbon_soldout] = 0xffcc4747;
defaultColors[key_share_icon] = 0xFF6E7275;
defaultColors[key_share_linkText] = 0xFF222222;
defaultColors[key_share_linkBackground] = 0x0F000000;
defaultColors[key_windowBackgroundWhite] = 0xffffffff;
defaultColors[key_windowBackgroundUnchecked] = 0xff96A2AD;
defaultColors[key_windowBackgroundChecked] = 0xff229AF0;
defaultColors[key_windowBackgroundCheckText] = 0xffffffff;
defaultColors[key_progressCircle] = 0xff1c93e3;
defaultColors[key_windowBackgroundWhiteGrayIcon] = 0xff1a1d21;
defaultColors[key_windowBackgroundWhiteBlueText] = 0xff4092cd;
defaultColors[key_windowBackgroundWhiteBlueText2] = 0xff3a95d5;
defaultColors[key_windowBackgroundWhiteBlueText3] = 0xff2678b6;
defaultColors[key_windowBackgroundWhiteBlueText4] = 0xff1c93e3;
defaultColors[key_windowBackgroundWhiteBlueText5] = 0xff4c8eca;
defaultColors[key_windowBackgroundWhiteBlueText6] = 0xff3a8ccf;
defaultColors[key_windowBackgroundWhiteBlueText7] = 0xff377aae;
defaultColors[key_windowBackgroundWhiteBlueButton] = 0xff1e88d3;
defaultColors[key_windowBackgroundWhiteBlueIcon] = 0xff379de5;
defaultColors[key_windowBackgroundWhiteGreenText] = 0xff26972c;
defaultColors[key_windowBackgroundWhiteGreenText2] = 0xff37a818;
defaultColors[key_text_RedRegular] = 0xffcc2929;
defaultColors[key_text_RedBold] = 0xffcc4747;
defaultColors[key_fill_RedNormal] = 0xffeb5e5e;
defaultColors[key_windowBackgroundWhiteGrayText] = 0xff808384;
defaultColors[key_windowBackgroundWhiteGrayText2] = 0xff82868a;
defaultColors[key_windowBackgroundWhiteGrayText3] = 0xff999999;
defaultColors[key_windowBackgroundWhiteGrayText4] = 0xff808080;
defaultColors[key_windowBackgroundWhiteGrayText5] = 0xffa3a3a3;
defaultColors[key_windowBackgroundWhiteGrayText6] = 0xff757575;
defaultColors[key_windowBackgroundWhiteGrayText7] = 0xffc6c6c6;
defaultColors[key_windowBackgroundWhiteGrayText8] = 0xff6d6d72;
defaultColors[key_windowBackgroundWhiteBlackText] = DEFAULT_BLACK_TEXT;
defaultColors[key_windowBackgroundWhiteHintText] = 0xffa8a8a8;
defaultColors[key_windowBackgroundWhiteValueText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_windowBackgroundWhiteLinkText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_windowBackgroundWhiteLinkSelection] = 0x3362a9e3;
defaultColors[key_windowBackgroundWhiteBlueHeader] = TELEGRAM_COLOR_TEXT;
defaultColors[key_windowBackgroundWhiteInputField] = 0xffdbdbdb;
defaultColors[key_windowBackgroundWhiteInputFieldActivated] = TELEGRAM_COLOR;
defaultColors[key_switchTrack] = 0xffa6adb3;
defaultColors[key_switchTrackChecked] = TELEGRAM_COLOR;
defaultColors[key_switchTrackBlue] = 0xff78828A;
defaultColors[key_switchTrackBlueChecked] = 0xff1079C4;
defaultColors[key_switchTrackBlueThumb] = 0xffffffff;
defaultColors[key_switchTrackBlueThumbChecked] = 0xffffffff;
defaultColors[key_switchTrackBlueSelector] = 0x17404a53;
defaultColors[key_switchTrackBlueSelectorChecked] = 0x21024781;
defaultColors[key_switch2Track] = 0xfff57e7e;
defaultColors[key_switch2TrackChecked] = TELEGRAM_COLOR;
defaultColors[key_checkboxSquareBackground] = TELEGRAM_COLOR;
defaultColors[key_checkboxSquareCheck] = 0xffffffff;
defaultColors[key_checkboxSquareUnchecked] = 0xff737373;
defaultColors[key_checkboxSquareDisabled] = 0xffb0b0b0;
defaultColors[key_listSelector] = 0x0f000000;
defaultColors[key_settings_listSelector] = 0x1d000010;
defaultColors[key_radioBackground] = 0xffb3b3b3;
defaultColors[key_radioBackgroundChecked] = TELEGRAM_COLOR;
defaultColors[key_windowBackgroundGray] = 0xffF1F1F3;
defaultColors[key_windowBackgroundGrayShadow] = 0xff000000;
defaultColors[key_emptyListPlaceholder] = 0xff73787b;
defaultColors[key_divider] = 0xffd9d9d9;
defaultColors[key_graySection] = 0xfff5f5f5;
defaultColors[key_graySectionText] = 0xff82878A;
defaultColors[key_contextProgressInner1] = 0xffbfdff6;
defaultColors[key_contextProgressOuter1] = 0xff2b96e2;
defaultColors[key_contextProgressInner2] = 0xffbfdff6;
defaultColors[key_contextProgressOuter2] = 0xffffffff;
defaultColors[key_contextProgressInner3] = 0xffb3b3b3;
defaultColors[key_contextProgressOuter3] = 0xffffffff;
defaultColors[key_contextProgressInner4] = 0xffcacdd0;
defaultColors[key_contextProgressOuter4] = 0xff2f3438;
defaultColors[key_fastScrollActive] = TELEGRAM_COLOR;
defaultColors[key_fastScrollInactive] = 0xffc9cdd1;
defaultColors[key_fastScrollText] = 0xffffffff;
defaultColors[key_pollCreateIcons] = 0xff909599;
defaultColors[key_avatar_text] = 0xffffffff;
defaultColors[key_avatar_backgroundSaved] = 0xff69BDF9;
defaultColors[key_avatar_background2Saved] = 0xff409FE1;
defaultColors[key_avatar_backgroundArchived] = 0xffB8C2CC;
defaultColors[key_avatar_backgroundArchivedHidden] = TELEGRAM_COLOR;
defaultColors[key_avatar_backgroundRed] = 0xffFF845E;
defaultColors[key_avatar_background2Red] = 0xffD45246;
defaultColors[key_avatar_backgroundOrange] = 0xffFEBB5B;
defaultColors[key_avatar_background2Orange] = 0xffF68136;
defaultColors[key_avatar_backgroundViolet] = 0xffB694F9;
defaultColors[key_avatar_background2Violet] = 0xff6C61DF;
defaultColors[key_avatar_backgroundGreen] = 0xff9AD164;
defaultColors[key_avatar_background2Green] = 0xff46BA43;
defaultColors[key_avatar_backgroundCyan] = 0xff5BCBE3;
defaultColors[key_avatar_background2Cyan] = 0xff359AD4;
defaultColors[key_avatar_backgroundBlue] = 0xff5CAFFA;
defaultColors[key_avatar_background2Blue] = 0xff408ACF;
defaultColors[key_avatar_backgroundPink] = 0xffFF8AAC;
defaultColors[key_avatar_background2Pink] = 0xffD95574;
defaultColors[key_avatar_backgroundGray] = 0xffA1ABB5;
defaultColors[key_avatar_backgroundInProfileBlue] = 0xffffffff;
defaultColors[key_avatar_backgroundActionBarBlue] = 0xfff5f5f5;
defaultColors[key_avatar_subtitleInProfileBlue] = DEFAULT_BLACK_TEXT;
defaultColors[key_avatar_actionBarSelectorBlue] = 0x121a1d21;
defaultColors[key_avatar_actionBarIconBlue] = DEFAULT_BLACK_TEXT;
defaultColors[key_avatar_nameInMessageRed] = 0xffCC5049;
defaultColors[key_avatar_nameInMessageOrange] = 0xffD67722;
defaultColors[key_avatar_nameInMessageViolet] = 0xff955CDB;
defaultColors[key_avatar_nameInMessageGreen] = 0xff40A920;
defaultColors[key_avatar_nameInMessageCyan] = 0xff309EBA;
defaultColors[key_avatar_nameInMessageBlue] = 0xff368AD1;
defaultColors[key_avatar_nameInMessagePink] = 0xffC7508B;
defaultColors[key_actionBarDefault] = 0xffffffff;
defaultColors[key_actionBarDefaultIcon] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarActionModeDefault] = 0xffffffff;
defaultColors[key_actionBarActionModeDefaultTop] = 0x10000000;
defaultColors[key_actionBarActionModeDefaultIcon] = DEFAULT_BLACK_TEXT; // key_windowBackgroundWhiteBlackText
defaultColors[key_actionBarDefaultTitle] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultSubtitle] = 0xff79817e; // key_windowBackgroundWhiteGrayText
defaultColors[key_actionBarDefaultSelector] = 0x121a1d21;
defaultColors[key_actionBarWhiteSelector] = 0x121a1d21;
defaultColors[key_actionBarDefaultSearch] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultSearchPlaceholder] = 0xff79817e;
defaultColors[key_actionBarDefaultSubmenuItem] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultSubmenuItemIcon] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultSubmenuBackground] = 0xffffffff;
defaultColors[key_actionBarDefaultSubmenuSeparator] = 0xfff5f5f5;
defaultColors[key_actionBarActionModeDefaultSelector] = 0xffe2e2e2;
defaultColors[key_actionBarActionModeReaction] = 0xfff0f0f0;
defaultColors[key_actionBarActionModeReactionText] = 0xff82868a;
defaultColors[key_actionBarActionModeReactionDot] = 0xffc0c0c0;
defaultColors[key_actionBarTabActiveText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_actionBarTabUnactiveText] = 0xff777c7f;
defaultColors[key_actionBarTabLine] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chats_tabUnreadActiveBackground] = 0xFF66ade1; //TELEGRAM_COLOR_TEXT;
defaultColors[key_chats_tabUnreadUnactiveBackground] = 0xffc5c9cc;
defaultColors[key_actionBarTabSelector] = 0x121a1d21;
defaultColors[key_actionBarBrowser] = 0xffffffff;
defaultColors[key_table_background] = 0xfff7f7f7;
defaultColors[key_table_border] = 0xffE0E0E0;
defaultColors[key_actionBarDefaultArchived] = 0xffffffff;
defaultColors[key_actionBarDefaultArchivedSelector] = 0x121a1d21;
defaultColors[key_actionBarDefaultArchivedIcon] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultArchivedTitle] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultArchivedSearch] = DEFAULT_BLACK_TEXT;
defaultColors[key_actionBarDefaultArchivedSearchPlaceholder] = 0xff838c96;
defaultColors[key_chats_onlineCircle] = 0xff4bcb1c;
defaultColors[key_chats_unreadCounter] = TELEGRAM_COLOR;
defaultColors[key_chats_unreadCounterMuted] = 0xffBEC3C7;
defaultColors[key_chats_unreadCounterText] = 0xffffffff;
defaultColors[key_chats_archiveBackground] = TELEGRAM_COLOR;
defaultColors[key_chats_archivePinBackground] = 0xff9faab3;
defaultColors[key_chats_archiveIcon] = 0xffffffff;
defaultColors[key_chats_archiveText] = 0xffffffff;
defaultColors[key_chats_name] = 0xff1a1d21;
defaultColors[key_chats_nameArchived] = 0xff1a1d21;
defaultColors[key_chats_secretName] = 0xff00a60e;
defaultColors[key_chats_secretIcon] = 0xff19b126;
defaultColors[key_chats_pinnedIcon] = 0xff919294;
defaultColors[key_chats_message] = 0xff75787A;
defaultColors[key_chats_messageArchived] = 0xff919191;
defaultColors[key_chats_message_threeLines] = 0xff8e9091;
defaultColors[key_chats_draft] = 0xffdd4b39;
defaultColors[key_chats_nameMessage] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chats_nameMessageArchived] = 0xff8b8d8f;
defaultColors[key_chats_nameMessage_threeLines] = 0xff424449;
defaultColors[key_chats_nameMessageArchived_threeLines] = 0xff5e5e5e;
defaultColors[key_chats_attachMessage] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chats_actionMessage] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chats_date] = 0xff848688;
defaultColors[key_chats_date_bold] = 0xff919395;
defaultColors[key_chats_pinnedOverlay] = 0x08000000;
defaultColors[key_chats_tabletSelectedOverlay] = 0x0f000000;
defaultColors[key_chats_sentCheck] = 0xff46aa36;
defaultColors[key_chats_sentReadCheck] = 0xff46aa36;
defaultColors[key_chats_sentClock] = 0xff75bd5e;
defaultColors[key_chats_sentError] = 0xffd55252;
defaultColors[key_chats_sentErrorIcon] = 0xffffffff;
defaultColors[key_chats_verifiedBackground] = 0xff33a8e6;
defaultColors[key_chats_verifiedCheck] = 0xffffffff;
defaultColors[key_chats_muteIcon] = 0xffbdc1c4;
defaultColors[key_chats_mentionIcon] = 0xffffffff;
defaultColors[key_chats_menuBackground] = 0xffffffff;
defaultColors[key_chats_menuItemText] = 0xff444444;
defaultColors[key_chats_menuItemCheck] = 0xff598fba;
defaultColors[key_chats_menuItemIcon] = 0xff889198;
defaultColors[key_chats_menuName] = 0xffffffff;
defaultColors[key_chats_menuPhone] = 0xffffffff;
defaultColors[key_chats_menuPhoneCats] = 0xffc2e5ff;
defaultColors[key_chats_actionIcon] = 0xffffffff;
defaultColors[key_chats_actionBackground] = 0xff65a9e0;
defaultColors[key_chats_actionPressedBackground] = 0xff569dd6;
defaultColors[key_chats_menuTopBackgroundCats] = 0xff598fba;
defaultColors[key_chats_archivePullDownBackground] = 0xffc6c9cc;
defaultColors[key_chats_archivePullDownBackgroundActive] = TELEGRAM_COLOR;
defaultColors[key_chat_attachCheckBoxCheck] = 0xffffffff;
defaultColors[key_chat_attachCheckBoxBackground] = TELEGRAM_COLOR;
defaultColors[key_chat_attachPhotoBackground] = 0x0c000000;
defaultColors[key_chat_attachActiveTab] = 0xff33a7f5;
defaultColors[key_chat_attachUnactiveTab] = 0xff92999e;
defaultColors[key_chat_attachPermissionImage] = 0xff333333;
defaultColors[key_chat_attachPermissionMark] = 0xffe25050;
defaultColors[key_chat_attachPermissionText] = 0xff6f777a;
defaultColors[key_chat_attachEmptyImage] = 0xffcccccc;
defaultColors[key_chat_attachIcon] = 0xffffffff;
defaultColors[key_chat_attachGalleryBackground] = 0xff459df5;
defaultColors[key_chat_attachAudioBackground] = 0xffeb6060;
defaultColors[key_chat_attachContactBackground] = 0xfff2c04b;
defaultColors[key_chat_attachContactText] = 0xffdfa000;
defaultColors[key_chat_attachLocationBackground] = 0xff60c255;
defaultColors[key_chat_attachPollBackground] = 0xfff2c04b;
defaultColors[key_chat_inPollCorrectAnswer] = 0xff60c255;
defaultColors[key_chat_outPollCorrectAnswer] = 0xff60c255;
defaultColors[key_chat_inPollWrongAnswer] = 0xffeb6060;
defaultColors[key_chat_outPollWrongAnswer] = 0xffeb6060;
defaultColors[key_chat_status] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_inGreenCall] = 0xff00c853;
defaultColors[key_chat_outGreenCall] = 0xff00c853;
defaultColors[key_chat_lockIcon] = 0xff222222;
defaultColors[key_chat_muteIcon] = 0xff79817e;
defaultColors[key_chat_inBubble] = 0xffffffff;
defaultColors[key_chat_inBubbleSelected] = 0xffecf7fd;
defaultColors[key_chat_inBubbleShadow] = 0xff1d3753;
defaultColors[key_chat_outBubble] = 0xffefffde;
defaultColors[key_chat_outBubbleGradientSelectedOverlay] = 0x14000000;
defaultColors[key_chat_outBubbleSelected] = 0xffd9f7c5;
defaultColors[key_chat_outBubbleShadow] = 0xff1e750c;
defaultColors[key_chat_inMediaIcon] = 0xffffffff;
defaultColors[key_chat_inMediaIconSelected] = 0xffeff8fe;
defaultColors[key_chat_outMediaIcon] = 0xffefffde;
defaultColors[key_chat_outMediaIconSelected] = 0xffe1f8cf;
defaultColors[key_chat_messageTextIn] = 0xff000000;
defaultColors[key_chat_messageTextOut] = 0xff000000;
defaultColors[key_chat_messageLinkIn] = 0xff2678b6;
defaultColors[key_chat_messageLinkOut] = 0xff2678b6;
defaultColors[key_chat_serviceText] = 0xffffffff;
defaultColors[key_chat_serviceLink] = 0xffffffff;
defaultColors[key_chat_serviceIcon] = 0xffffffff;
defaultColors[key_chat_mediaTimeBackground] = 0x66000000;
defaultColors[key_chat_outSentCheck] = 0xff5db050;
defaultColors[key_chat_outSentCheckSelected] = 0xff5db050;
defaultColors[key_chat_outSentCheckRead] = 0xff5db050;
defaultColors[key_chat_outSentCheckReadSelected] = 0xff5db050;
defaultColors[key_chat_outSentClock] = 0xff75bd5e;
defaultColors[key_chat_outSentClockSelected] = 0xff75bd5e;
defaultColors[key_chat_inSentClock] = 0xffa1aab3;
defaultColors[key_chat_inSentClockSelected] = 0xff93bdca;
defaultColors[key_chat_mediaSentCheck] = 0xffffffff;
defaultColors[key_chat_mediaSentClock] = 0xffffffff;
defaultColors[key_chat_inViews] = 0xffa1aab3;
defaultColors[key_chat_inViewsSelected] = 0xff93bdca;
defaultColors[key_chat_outViews] = 0xff6eb257;
defaultColors[key_chat_outViewsSelected] = 0xff6eb257;
defaultColors[key_chat_mediaViews] = 0xffffffff;
defaultColors[key_chat_inMenu] = 0xffb6bdc5;
defaultColors[key_chat_inMenuSelected] = 0xff98c1ce;
defaultColors[key_chat_outMenu] = 0xff91ce7e;
defaultColors[key_chat_outMenuSelected] = 0xff91ce7e;
defaultColors[key_chat_mediaMenu] = 0xffffffff;
defaultColors[key_chat_outInstant] = 0xff55ab4f;
defaultColors[key_chat_outInstantSelected] = 0xff489943;
defaultColors[key_chat_inInstant] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_inInstantSelected] = 0xff3079b5;
defaultColors[key_chat_sentError] = 0xffdb3535;
defaultColors[key_chat_sentErrorIcon] = 0xffffffff;
defaultColors[key_chat_selectedBackground] = 0x280a90f0;
defaultColors[key_chat_previewDurationText] = 0xffffffff;
defaultColors[key_chat_previewGameText] = 0xffffffff;
defaultColors[key_chat_inPreviewInstantText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_outPreviewInstantText] = 0xff55ab4f;
defaultColors[key_chat_secretTimeText] = 0xffe4e2e0;
defaultColors[key_chat_stickerNameText] = 0xffffffff;
defaultColors[key_chat_botButtonText] = 0xffffffff;
defaultColors[key_chat_inForwardedNameText] = 0xff3886c7;
defaultColors[key_chat_outForwardedNameText] = 0xff55ab4f;
defaultColors[key_chat_inPsaNameText] = 0xff5a9c39;
defaultColors[key_chat_outPsaNameText] = 0xff5a9c39;
defaultColors[key_chat_inViaBotNameText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_outViaBotNameText] = 0xff55ab4f;
defaultColors[key_chat_stickerViaBotNameText] = 0xffffffff;
defaultColors[key_chat_inReplyLine] = 0xff599fd8;
defaultColors[key_chat_outReplyLine] = 0xff6eb969;
defaultColors[key_chat_outReplyLine2] = 0xff40A920;
defaultColors[key_chat_stickerReplyLine] = 0xffffffff;
defaultColors[key_chat_inReplyNameText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_outReplyNameText] = 0xff55ab4f;
defaultColors[key_chat_stickerReplyNameText] = 0xffffffff;
defaultColors[key_chat_inReplyMessageText] = 0xff000000;
defaultColors[key_chat_outReplyMessageText] = 0xff000000;
defaultColors[key_chat_inReplyMediaMessageText] = 0xffa1aab3;
defaultColors[key_chat_outReplyMediaMessageText] = 0xff65b05b;
defaultColors[key_chat_inReplyMediaMessageSelectedText] = 0xff89b4c1;
defaultColors[key_chat_outReplyMediaMessageSelectedText] = 0xff65b05b;
defaultColors[key_chat_stickerReplyMessageText] = 0xffffffff;
defaultColors[key_chat_inPreviewLine] = 0xff70b4e8;
defaultColors[key_chat_outPreviewLine] = 0xff88c97b;
defaultColors[key_chat_inSiteNameText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_outSiteNameText] = 0xff55ab4f;
defaultColors[key_chat_inContactNameText] = 0xff4e9ad4;
defaultColors[key_chat_outContactNameText] = 0xff55ab4f;
defaultColors[key_chat_inContactPhoneText] = 0xff2f3438;
defaultColors[key_chat_inContactPhoneSelectedText] = 0xff2f3438;
defaultColors[key_chat_outContactPhoneText] = 0xff354234;
defaultColors[key_chat_outContactPhoneSelectedText] = 0xff354234;
defaultColors[key_chat_mediaProgress] = 0xffffffff;
defaultColors[key_chat_inAudioProgress] = 0xffffffff;
defaultColors[key_chat_outAudioProgress] = 0xffefffde;
defaultColors[key_chat_inAudioSelectedProgress] = 0xffeff8fe;
defaultColors[key_chat_outAudioSelectedProgress] = 0xffe1f8cf;
defaultColors[key_chat_mediaTimeText] = 0xffffffff;
defaultColors[key_chat_inAdminText] = 0xffc0c6cb;
defaultColors[key_chat_inAdminSelectedText] = 0xff89b4c1;
defaultColors[key_chat_outAdminText] = 0xff70b15c;
defaultColors[key_chat_outAdminSelectedText] = 0xff70b15c;
defaultColors[key_chat_inTimeText] = 0xffa1aab3;
defaultColors[key_chat_inTimeSelectedText] = 0xff89b4c1;
defaultColors[key_chat_outTimeText] = 0xff70b15c;
defaultColors[key_chat_outTimeSelectedText] = 0xff70b15c;
defaultColors[key_chat_inAudioPerformerText] = 0xff2f3438;
defaultColors[key_chat_inAudioPerformerSelectedText] = 0xff2f3438;
defaultColors[key_chat_outAudioPerformerText] = 0xff354234;
defaultColors[key_chat_outAudioPerformerSelectedText] = 0xff354234;
defaultColors[key_chat_inAudioTitleText] = 0xff4e9ad4;
defaultColors[key_chat_outAudioTitleText] = 0xff55ab4f;
defaultColors[key_chat_inAudioDurationText] = 0xffa1aab3;
defaultColors[key_chat_outAudioDurationText] = 0xff65b05b;
defaultColors[key_chat_inAudioDurationSelectedText] = 0xff89b4c1;
defaultColors[key_chat_outAudioDurationSelectedText] = 0xff65b05b;
defaultColors[key_chat_inAudioSeekbar] = 0xffe4eaf0;
defaultColors[key_chat_inAudioCacheSeekbar] = 0x3fe4eaf0;
defaultColors[key_chat_outAudioSeekbar] = 0xffbbe3ac;
defaultColors[key_chat_outAudioCacheSeekbar] = 0x3fbbe3ac;
defaultColors[key_chat_inAudioSeekbarSelected] = 0xffbcdee8;
defaultColors[key_chat_outAudioSeekbarSelected] = 0xffa9dd96;
defaultColors[key_chat_inAudioSeekbarFill] = TELEGRAM_COLOR;
defaultColors[key_chat_outAudioSeekbarFill] = 0xff78c272;
defaultColors[key_chat_inVoiceSeekbar] = 0xffdee5eb;
defaultColors[key_chat_outVoiceSeekbar] = 0xffbbe3ac;
defaultColors[key_chat_inVoiceSeekbarSelected] = 0xffbcdee8;
defaultColors[key_chat_outVoiceSeekbarSelected] = 0xffa9dd96;
defaultColors[key_chat_inVoiceSeekbarFill] = TELEGRAM_COLOR;
defaultColors[key_chat_outVoiceSeekbarFill] = 0xff78c272;
defaultColors[key_chat_inFileProgress] = 0xffebf0f5;
defaultColors[key_chat_outFileProgress] = 0xffdaf5c3;
defaultColors[key_chat_inFileProgressSelected] = 0xffcbeaf6;
defaultColors[key_chat_outFileProgressSelected] = 0xffc5eca7;
defaultColors[key_chat_inFileNameText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_outFileNameText] = 0xff55ab4f;
defaultColors[key_chat_inFileInfoText] = 0xffa1aab3;
defaultColors[key_chat_outFileInfoText] = 0xff65b05b;
defaultColors[key_chat_inFileInfoSelectedText] = 0xff89b4c1;
defaultColors[key_chat_outFileInfoSelectedText] = 0xff65b05b;
defaultColors[key_chat_inFileBackground] = 0xffebf0f5;
defaultColors[key_chat_outFileBackground] = 0xffdaf5c3;
defaultColors[key_chat_inFileBackgroundSelected] = 0xffcbeaf6;
defaultColors[key_chat_outFileBackgroundSelected] = 0xffc5eca7;
defaultColors[key_chat_inVenueInfoText] = 0xffa1aab3;
defaultColors[key_chat_outVenueInfoText] = 0xff65b05b;
defaultColors[key_chat_inVenueInfoSelectedText] = 0xff89b4c1;
defaultColors[key_chat_outVenueInfoSelectedText] = 0xff65b05b;
defaultColors[key_chat_mediaInfoText] = 0xffffffff;
defaultColors[key_chat_linkSelectBackground] = 0x3362a9e3;
defaultColors[key_chat_outLinkSelectBackground] = 0x3362a9e3;
defaultColors[key_chat_textSelectBackground] = 0x6662a9e3;
defaultColors[key_chat_emojiPanelBackground] = 0xfff0f2f5;
defaultColors[key_chat_emojiSearchBackground] = 0xffe5e9ee;
defaultColors[key_chat_emojiSearchIcon] = 0xff94a1af;
defaultColors[key_chat_emojiPanelShadowLine] = 0x12000000;
defaultColors[key_chat_emojiPanelEmptyText] = 0xff949ba1;
defaultColors[key_chat_emojiPanelIcon] = 0xff9da4ab;
defaultColors[key_chat_emojiBottomPanelIcon] = 0xff8c9197;
defaultColors[key_chat_emojiPanelIconSelected] = 0xff5E6976;
defaultColors[key_chat_emojiPanelStickerPackSelector] = 0xffe2e5e7;
defaultColors[key_chat_emojiPanelStickerPackSelectorLine] = 0xff56abf0;
defaultColors[key_chat_emojiPanelBackspace] = 0xff8c9197;
defaultColors[key_chat_emojiPanelTrendingTitle] = 0xff222222;
defaultColors[key_chat_emojiPanelStickerSetName] = 0xff828b94;
defaultColors[key_chat_emojiPanelStickerSetNameHighlight] = 0xff278ddb;
defaultColors[key_chat_emojiPanelStickerSetNameIcon] = 0xffb1b6bc;
defaultColors[key_chat_emojiPanelTrendingDescription] = 0xff8a8a8a;
defaultColors[key_chat_botKeyboardButtonText] = 0xF0444444;
defaultColors[key_chat_botKeyboardButtonBackground] = 0x66BCC3C8;
defaultColors[key_chat_botKeyboardButtonBackgroundPressed] = 0x66808C94;
defaultColors[key_chat_unreadMessagesStartArrowIcon] = 0xffa2b5c7;
defaultColors[key_chat_unreadMessagesStartText] = 0xff5695cc;
defaultColors[key_chat_unreadMessagesStartBackground] = 0xffffffff;
defaultColors[key_chat_inLocationBackground] = 0xffebf0f5;
defaultColors[key_chat_inLocationIcon] = 0xffa2b5c7;
defaultColors[key_chat_outLocationIcon] = 0xff87bf78;
defaultColors[key_chat_inContactBackground] = TELEGRAM_COLOR;
defaultColors[key_chat_inContactIcon] = 0xffffffff;
defaultColors[key_chat_outContactBackground] = 0xff78c272;
defaultColors[key_chat_outContactIcon] = 0xffefffde;
defaultColors[key_chat_searchPanelIcons] = 0xff676a6f;
defaultColors[key_chat_searchPanelText] = 0xff676a6f;
defaultColors[key_chat_secretChatStatusText] = 0xff7f7f7f;
defaultColors[key_chat_fieldOverlayText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_stickersHintPanel] = 0xffffffff;
defaultColors[key_chat_replyPanelIcons] = TELEGRAM_COLOR;
defaultColors[key_chat_replyPanelClose] = 0xff8e959b;
defaultColors[key_chat_replyPanelName] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_replyPanelLine] = 0xffe8e8e8;
defaultColors[key_chat_messagePanelBackground] = 0xffffffff;
defaultColors[key_chat_messagePanelText] = 0xff000000;
defaultColors[key_chat_messagePanelHint] = 0xff858a84;
defaultColors[key_chat_messagePanelCursor] = 0xff54a1db;
defaultColors[key_chat_messagePanelShadow] = 0xff000000;
defaultColors[key_chat_messagePanelIcons] = 0xff8e959b;
defaultColors[key_chat_recordedVoicePlayPause] = 0xffffffff;
defaultColors[key_chat_recordedVoiceDot] = 0xffda564d;
defaultColors[key_chat_recordedVoiceBackground] = 0xff5DADE8;
defaultColors[key_chat_recordedVoiceDarkerBackground] = 0xff1F89DB;
defaultColors[key_chat_recordedVoiceProgress] = 0xffB1DEFF;
defaultColors[key_chat_recordedVoiceProgressInner] = 0xffffffff;
defaultColors[key_chat_recordVoiceCancel] = 0xff3A95D4;
defaultColors[key_chat_messagePanelSend] = TELEGRAM_COLOR;
defaultColors[key_chat_messagePanelVoiceLock] = 0xffa4a4a4;
defaultColors[key_chat_messagePanelVoiceLockBackground] = 0xffffffff;
defaultColors[key_chat_messagePanelVoiceLockShadow] = 0xff000000;
defaultColors[key_chat_recordTime] = 0xff8e959b;
defaultColors[key_chat_emojiPanelNewTrending] = 0xff4da6ea;
defaultColors[key_chat_gifSaveHintText] = 0xffffffff;
defaultColors[key_chat_gifSaveHintBackground] = 0xE21f2b38;
defaultColors[key_chat_goDownButton] = 0xffffffff;
defaultColors[key_chat_goDownButtonCounter] = 0xffffffff;
defaultColors[key_chat_goDownButtonCounterBackground] = TELEGRAM_COLOR;
defaultColors[key_chat_messagePanelCancelInlineBot] = 0xffadadad;
defaultColors[key_chat_messagePanelVoicePressed] = 0xffffffff;
defaultColors[key_chat_messagePanelVoiceBackground] = TELEGRAM_COLOR;
defaultColors[key_chat_messagePanelVoiceDelete] = 0xff737373;
defaultColors[key_chat_messagePanelVoiceDuration] = 0xffffffff;
defaultColors[key_chat_inlineResultIcon] = 0xff5795cc;
defaultColors[key_chat_topPanelBackground] = 0xffffffff;
defaultColors[key_chat_topPanelClose] = 0xff818786;
defaultColors[key_chat_topPanelLine] = 0xff3fa8ef;
defaultColors[key_chat_topPanelTitle] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_topPanelMessage] = 0xff767e7c;
defaultColors[key_chat_addContact] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_inLoader] = TELEGRAM_COLOR;
defaultColors[key_chat_inLoaderSelected] = 0xff65abe0;
defaultColors[key_chat_outLoader] = 0xff78c272;
defaultColors[key_chat_outLoaderSelected] = 0xff6ab564;
defaultColors[key_chat_inLoaderPhoto] = 0xffa2b8c8;
defaultColors[key_chat_mediaLoaderPhoto] = 0x66000000;
defaultColors[key_chat_mediaLoaderPhotoSelected] = 0x7f000000;
defaultColors[key_chat_mediaLoaderPhotoIcon] = 0xffffffff;
defaultColors[key_chat_mediaLoaderPhotoIconSelected] = 0xffd9d9d9;
defaultColors[key_chat_serviceBackgroundSelector] = 0x20ffffff;
defaultColors[key_chat_inQuote] = 0xff459BD8;
defaultColors[key_chat_outQuote] = 0xff6AB860;
defaultColors[key_profile_creatorIcon] = 0xff3a95d5;
defaultColors[key_profile_actionIcon] = 0xff81868a;
defaultColors[key_profile_actionBackground] = 0xffffffff;
defaultColors[key_profile_actionPressedBackground] = 0x121a1d21;
defaultColors[key_profile_verifiedBackground] = TELEGRAM_COLOR;
defaultColors[key_profile_verifiedCheck] = 0xffffffff;
defaultColors[key_profile_title] = 0xff222222;
defaultColors[key_profile_status] = 0xff222222;
defaultColors[key_chat_tagAdmin] = 0xff40A920;
defaultColors[key_chat_tagCreator] = 0xff955CDB;
defaultColors[key_profile_tabText] = 0xff878c90;
defaultColors[key_profile_tabSelectedText] = 0xff3a95d5;
defaultColors[key_profile_tabSelectedLine] = 0xff4fa6e9;
defaultColors[key_profile_tabSelector] = 0x0f000000;
defaultColors[key_player_actionBarSelector] = 0x0f000000;
defaultColors[key_player_actionBarTitle] = 0xff2f3438;
defaultColors[key_player_actionBarSubtitle] = 0xff8a8a8a;
defaultColors[key_player_actionBarItems] = 0xff8a8a8a;
defaultColors[key_player_background] = 0xffffffff;
defaultColors[key_player_time] = 0xff8c9296;
defaultColors[key_player_progressBackground] = 0xffEBEDF0;
defaultColors[key_player_progressCachedBackground] = 0xffC5DCF0;
defaultColors[key_player_progress] = 0xff54AAEB;
defaultColors[key_player_button] = 0xff333333;
defaultColors[key_player_buttonActive] = 0xff4ca8ea;
defaultColors[key_sheet_scrollUp] = 0xffe1e4e8;
defaultColors[key_sheet_other] = 0xffc9cdd3;
defaultColors[key_files_folderIcon] = 0xffffffff;
defaultColors[key_files_folderIconBackground] = 0xff5dafeb;
defaultColors[key_files_iconText] = 0xffffffff;
defaultColors[key_sessions_devicesImage] = 0xff969696;
defaultColors[key_passport_authorizeBackground] = 0xff45abef;
defaultColors[key_passport_authorizeBackgroundSelected] = 0xff409ddb;
defaultColors[key_passport_authorizeText] = 0xffffffff;
defaultColors[key_location_sendLocationBackground] = 0xff469df6;
defaultColors[key_location_sendLocationIcon] = 0xffffffff;
defaultColors[key_location_sendLocationText] = 0xff1c8ad8;
defaultColors[key_location_sendLiveLocationBackground] = 0xff4fc244;
defaultColors[key_location_sendLiveLocationIcon] = 0xffffffff;
defaultColors[key_location_sendLiveLocationText] = 0xff36ab24;
defaultColors[key_location_liveLocationProgress] = 0xff359fe5;
defaultColors[key_location_placeLocationBackground] = 0xff4ca8ea;
defaultColors[key_location_actionIcon] = 0xff3a4045;
defaultColors[key_location_actionActiveIcon] = 0xff4290e6;
defaultColors[key_location_actionBackground] = 0xffffffff;
defaultColors[key_location_actionPressedBackground] = 0xfff2f2f2;
defaultColors[key_dialog_liveLocationProgress] = 0xff359fe5;
defaultColors[key_calls_callReceivedGreenIcon] = 0xff00c853;
defaultColors[key_calls_callReceivedRedIcon] = 0xffff4848;
defaultColors[key_featuredStickers_addedIcon] = TELEGRAM_COLOR;
defaultColors[key_featuredStickers_buttonProgress] = 0xffffffff;
defaultColors[key_featuredStickers_addButton] = TELEGRAM_COLOR;
defaultColors[key_featuredStickers_addButton2] = 0xFF56baf0;
defaultColors[key_featuredStickers_addButtonPressed] = 0xff2288d1;
defaultColors[key_featuredStickers_removeButtonText] = 0xff5093d3;
defaultColors[key_featuredStickers_buttonText] = 0xffffffff;
defaultColors[key_featuredStickers_unread] = 0xff4da6ea;
defaultColors[key_buttonNeutral] = 0xFFE4E4E4;
defaultColors[key_buttonNeutralText] = DEFAULT_BLACK_TEXT;
defaultColors[key_inappPlayerPerformer] = 0xff1a1d21;
defaultColors[key_inappPlayerTitle] = 0xff1a1d21;
defaultColors[key_inappPlayerBackground] = 0xffffffff;
defaultColors[key_inappPlayerPlayPause] = TELEGRAM_COLOR;
defaultColors[key_inappPlayerClose] = 0xff898b86;
defaultColors[key_returnToCallBackground] = 0xff44a1e3;
defaultColors[key_returnToCallMutedBackground] = 0xff9DA7B1;
defaultColors[key_returnToCallText] = 0xffffffff;
defaultColors[key_sharedMedia_startStopLoadIcon] = 0xff36a2ee;
defaultColors[key_sharedMedia_linkPlaceholder] = 0xfff0f3f5;
defaultColors[key_sharedMedia_linkPlaceholderText] = 0xffb7bec3;
defaultColors[key_sharedMedia_photoPlaceholder] = 0xffedf3f7;
defaultColors[key_checkbox] = 0xff5ec245;
defaultColors[key_checkboxCheck] = 0xffffffff;
defaultColors[key_checkboxDisabled] = 0xffb0b9c2;
defaultColors[key_stickers_menu] = 0xffb6bdc5;
defaultColors[key_stickers_menuSelector] = 0x0f000000;
defaultColors[key_changephoneinfo_image2] = TELEGRAM_COLOR;
defaultColors[key_groupcreate_hintText] = 0xffa1aab3;
defaultColors[key_groupcreate_cursor] = 0xff52a3db;
defaultColors[key_groupcreate_sectionShadow] = 0xff000000;
defaultColors[key_groupcreate_sectionText] = 0xff7c8288;
defaultColors[key_groupcreate_spanText] = 0xff222222;
defaultColors[key_groupcreate_spanBackground] = 0xfff2f2f2;
defaultColors[key_groupcreate_spanDelete] = 0xffffffff;
defaultColors[key_contacts_inviteBackground] = 0xff55be61;
defaultColors[key_contacts_inviteText] = 0xffffffff;
defaultColors[key_login_progressInner] = 0xffe1eaf2;
defaultColors[key_login_progressOuter] = 0xff62a0d0;
defaultColors[key_picker_enabledButton] = 0xff19a7e8;
defaultColors[key_picker_disabledButton] = 0xff999999;
defaultColors[key_picker_badge] = 0xff29b6f7;
defaultColors[key_picker_badgeText] = 0xffffffff;
defaultColors[key_chat_botSwitchToInlineText] = 0xff4391cc;
defaultColors[key_undo_background] = 0xea272f38;
defaultColors[key_undo_cancelColor] = 0xff85caff;
defaultColors[key_undo_infoColor] = 0xffffffff;
defaultColors[key_chat_outTextSelectionHighlight] = 0x2E3F9923;
defaultColors[key_chat_inTextSelectionHighlight] = 0x5062A9E3;
defaultColors[key_chat_TextSelectionCursor] = 0xFF419FE8;
defaultColors[key_chat_outTextSelectionCursor] = 0xFF419FE8;
defaultColors[key_chat_outBubbleLocationPlaceholder] = 0x1e307311;
defaultColors[key_chat_inBubbleLocationPlaceholder] = 0x1e506373;
defaultColors[key_chat_BlurAlpha] = 0xB2000000;
defaultColors[key_chat_BlurAlphaSlow] = 0xC1000000;
defaultColors[key_chat_editMediaButton] = 0xff1A9CFF;
defaultColors[key_statisticChartSignature] = 0x7f252529;
defaultColors[key_statisticChartSignatureAlpha] = 0x7f252529;
defaultColors[key_statisticChartHintLine] = 0x1a182D3B;
defaultColors[key_statisticChartActiveLine] = 0x33000000;
defaultColors[key_statisticChartInactivePickerChart] = 0x99e2eef9;
defaultColors[key_statisticChartActivePickerChart] = 0xd8baccd9;
defaultColors[key_statisticChartRipple] = 0x2c7e9db7;
defaultColors[key_statisticChartBackZoomColor] = 0xff108BE3;
defaultColors[key_statisticChartChevronColor] = 0xffD2D5D7;
defaultColors[key_statisticChartLine_blue] = 0xff327FE5;
defaultColors[key_statisticChartLine_green] = 0xff61C752;
defaultColors[key_statisticChartLine_red] = 0xffE05356;
defaultColors[key_statisticChartLine_golden] = 0xffEBA52D;
defaultColors[key_statisticChartLine_lightblue] = 0xff58A8ED;
defaultColors[key_statisticChartLine_lightgreen] = 0xff8FCF39;
defaultColors[key_statisticChartLine_orange] = 0xffF28C39;
defaultColors[key_statisticChartLine_indigo] = 0xff7F79F3;
defaultColors[key_statisticChartLine_purple] = 0xff9F79E8;
defaultColors[key_statisticChartLine_cyan] = 0xff40D0CA;
defaultColors[key_statisticChartLineEmpty] = 0xFFEEEEEE;
defaultColors[key_color_blue] = 0xff327FE5;
defaultColors[key_color_green] = 0xff61C752;
defaultColors[key_color_red] = 0xffE05356;
defaultColors[key_color_yellow] = 0xffEBA52D;
defaultColors[key_color_lightblue] = 0xff58A8ED;
defaultColors[key_color_lightgreen] = 0xff8FCF39;
defaultColors[key_color_orange] = 0xffF28C39;
defaultColors[key_color_purple] = 0xff9F79E8;
defaultColors[key_color_cyan] = 0xff40D0CA;
defaultColors[key_voipgroup_checkMenu] = 0xff6BB6F9;
defaultColors[key_voipgroup_muteButton] = 0xff77E55C;
defaultColors[key_voipgroup_muteButton2] = 0xff7DDCAA;
defaultColors[key_voipgroup_muteButton3] = 0xff56C7FE;
defaultColors[key_voipgroup_searchText] = 0xffffffff;
defaultColors[key_voipgroup_searchPlaceholder] = 0xff858D94;
defaultColors[key_voipgroup_searchBackground] = 0xff303B47;
defaultColors[key_voipgroup_leaveCallMenu] = 0xffFF7575;
defaultColors[key_voipgroup_scrollUp] = 0xff394654;
defaultColors[key_voipgroup_soundButton] = 0x7d2C414D;
defaultColors[key_voipgroup_soundButtonActive] = 0x7d22A4EB;
defaultColors[key_voipgroup_soundButtonActiveScrolled] = 0x8233B4FF;
defaultColors[key_voipgroup_soundButton2] = 0x7d28593A;
defaultColors[key_voipgroup_soundButtonActive2] = 0x7d18B751;
defaultColors[key_voipgroup_soundButtonActive2Scrolled] = 0x8224BF46;
defaultColors[key_voipgroup_leaveButton] = 0x7dF75C5C;
defaultColors[key_voipgroup_leaveButtonScrolled] = 0x82D14D54;
defaultColors[key_voipgroup_connectingProgress] = 0xff28BAFF;
defaultColors[key_voipgroup_disabledButton] = 0xff1C2229;
defaultColors[key_voipgroup_rtmpButton] = 0xff2a3853;
defaultColors[key_voipgroup_disabledButtonActive] = 0xff2C3A45;
defaultColors[key_voipgroup_disabledButtonActiveScrolled] = 0x8277A1FC;
defaultColors[key_voipgroup_unmuteButton] = 0xff539EF8;
defaultColors[key_voipgroup_unmuteButton2] = 0xff66D4FB;
defaultColors[key_voipgroup_actionBarUnscrolled] = 0xff191F26;
defaultColors[key_voipgroup_listViewBackgroundUnscrolled] = 0xff222A33;
defaultColors[key_voipgroup_lastSeenTextUnscrolled] = 0xff858D94;
defaultColors[key_voipgroup_mutedIconUnscrolled] = 0xff7E868C;
defaultColors[key_voipgroup_actionBar] = 0xff0F1317;
defaultColors[key_voipgroup_actionBarItems] = 0xffffffff;
defaultColors[key_voipgroup_actionBarItemsSelector] = 0x1eBADBFF;
defaultColors[key_voipgroup_mutedByAdminIcon] = 0xffFF7070;
defaultColors[key_voipgroup_mutedIcon] = 0xff6F7980;
defaultColors[key_voipgroup_lastSeenText] = 0xff79838A;
defaultColors[key_voipgroup_nameText] = 0xffffffff;
defaultColors[key_voipgroup_listViewBackground] = 0xff1C2229;
defaultColors[key_voipgroup_dialogBackground] = 0xff1C2229;
defaultColors[key_voipgroup_listeningText] = 0xff4DB8FF;
defaultColors[key_voipgroup_speakingText] = 0xff77EE7D;
defaultColors[key_voipgroup_listSelector] = 0x0effffff;
defaultColors[key_voipgroup_inviteMembersBackground] = 0xff222A33;
defaultColors[key_voipgroup_overlayBlue1] = 0xff2BCEFF;
defaultColors[key_voipgroup_overlayBlue2] = 0xff0976E3;
defaultColors[key_voipgroup_overlayGreen1] = 0xff12B522;
defaultColors[key_voipgroup_overlayGreen2] = 0xff00D6C1;
defaultColors[key_voipgroup_topPanelBlue1] = 0xff60C7FB;
defaultColors[key_voipgroup_topPanelBlue2] = 0xff519FF9;
defaultColors[key_voipgroup_topPanelGreen1] = 0xff52CE5D;
defaultColors[key_voipgroup_topPanelGreen2] = 0xff00B1C0;
defaultColors[key_voipgroup_topPanelGray] = 0xff8599aa;
defaultColors[key_voipgroup_overlayAlertGradientMuted] = 0xff236D92;
defaultColors[key_voipgroup_overlayAlertGradientMuted2] = 0xff2C4D6B;
defaultColors[key_voipgroup_overlayAlertGradientUnmuted] = 0xff0C8A8C;
defaultColors[key_voipgroup_overlayAlertGradientUnmuted2] = 0xff284C75;
defaultColors[key_voipgroup_mutedByAdminGradient] = 0xff57A4FE;
defaultColors[key_voipgroup_mutedByAdminGradient2] = 0xffF05459;
defaultColors[key_voipgroup_mutedByAdminGradient3] = 0xff766EE9;
defaultColors[key_voipgroup_overlayAlertMutedByAdmin] = 0xff67709E;
defaultColors[key_voipgroup_overlayAlertMutedByAdmin2] = 0xff2F5078;
defaultColors[key_voipgroup_mutedByAdminMuteButton] = 0x7F78A3FF;
defaultColors[key_voipgroup_mutedByAdminMuteButtonDisabled] = 0x3378A3FF;
defaultColors[key_voipgroup_windowBackgroundWhiteInputField] = 0xffdbdbdb;
defaultColors[key_voipgroup_windowBackgroundWhiteInputFieldActivated] = TELEGRAM_COLOR;
defaultColors[key_chat_outReactionButtonBackground] = 0xff78c272;
defaultColors[key_chat_inReactionButtonBackground] = TELEGRAM_COLOR;
defaultColors[key_chat_inReactionButtonText] = TELEGRAM_COLOR_TEXT;
defaultColors[key_chat_outReactionButtonText] = 0xff55ab4f;
defaultColors[key_chat_inReactionButtonTextSelected] = 0xffffffff;
defaultColors[key_chat_outReactionButtonTextSelected] = 0xffffffff;
defaultColors[key_chat_reactionServiceButtonBackgroundSelected] = 0xffffffff;
defaultColors[key_chat_reactionServiceButtonTextSelected] = 0xFF000000;
defaultColors[key_premiumGradient0] = 0xff4ACD43;
defaultColors[key_premiumGradient1] = 0xff55A5FF;
defaultColors[key_premiumGradient2] = 0xffA767FF;
defaultColors[key_premiumGradient3] = 0xffDB5C9D;
defaultColors[key_premiumGradient4] = 0xffF38926;
defaultColors[key_premiumGradientBackground1] = 0xff55A5FF;
defaultColors[key_premiumGradientBackground2] = 0xffA767FF;
defaultColors[key_premiumGradientBackground3] = 0xffDB5C9D;
defaultColors[key_premiumGradientBackground4] = 0xffF38926;
defaultColors[key_premiumGradientBackgroundOverlay] = Color.WHITE;
defaultColors[key_premiumStarGradient1] = 0xffFFFFFF;
defaultColors[key_premiumStarGradient2] = 0xffE3ECFA;
defaultColors[key_premiumCoinGradient1] = -15436801;
defaultColors[key_premiumCoinGradient2] = -4167942;
defaultColors[key_premiumStartSmallStarsColor] = ColorUtils.setAlphaComponent(Color.WHITE, 90);
defaultColors[key_premiumStartSmallStarsColor2] = ColorUtils.setAlphaComponent(Color.WHITE, 90);
defaultColors[key_premiumGradientBottomSheet1] = 0xff5B9DE7;
defaultColors[key_premiumGradientBottomSheet2] = 0xffAB87DD;
defaultColors[key_premiumGradientBottomSheet3] = 0xffE794BE;
defaultColors[key_topics_unreadCounter] = 0xff4ecc5e;
defaultColors[key_topics_unreadCounterMuted] = 0xff8b8d8f;
defaultColors[key_starsGradient1] = 0xffFEC846;
defaultColors[key_starsGradient2] = 0xffEC920A;
defaultColors[key_stories_circle1] = 0xFF2C9EFC; // 0xFF39DF3C;
defaultColors[key_stories_circle2] = 0xFF2fc183; // 0xFF4DBBFF;
defaultColors[key_stories_circle_dialog1] = 0xFF2C9EFC; // 0xFF4AED55;
defaultColors[key_stories_circle_dialog2] = 0xFF2fc183; // 0xFF4DC3FF;
defaultColors[key_stories_circle_closeFriends1] = 0xFF81ce2d; // 0xFFC9EB38;
defaultColors[key_stories_circle_closeFriends2] = 0xFF18bd36; // 0xFF09C167;
defaultColors[key_stories_circle_live1] = 0xFFFF6B5B;
defaultColors[key_stories_circle_live2] = 0xFFFA4874;
defaultColors[key_chat_inCodeBackground] = 0xff6F889E;
defaultColors[key_chat_outCodeBackground] = 0x123c7503;
defaultColors[key_code_keyword] = 0xFFE05356;
defaultColors[key_code_operator] = 0xFF4DBBFF;
defaultColors[key_code_constant] = 0xFF7F79F3;
defaultColors[key_code_string] = 0xFF37C123;
defaultColors[key_code_number] = 0xFF327FE5;
defaultColors[key_code_comment] = 0x80000000;
defaultColors[key_code_function] = 0xFFF28C39;
defaultColors[key_iv_background] = 0xFFFFFFFF;
defaultColors[key_iv_backgroundGray] = 0xfff0f0f0;
defaultColors[key_iv_ab_progress] = TELEGRAM_COLOR;
defaultColors[key_iv_navigationBackground] = 0xfff0f0f0;
defaultColors[key_reactionStarSelector] = 0x40F0AB1F;
defaultColors[key_glass_defaultIcon] = 0x991B2227; //0xFF747875;
defaultColors[key_glass_defaultText] = 0x991B2227; //0xFF737876;
defaultColors[key_glass_targetMainTabs] = 0xFFFFFFFF;
defaultColors[key_glass_targetMainTopPanel] = 0xFFFFFFFF;
defaultColors[key_glass_tabSelected] = 0xFF1a91e6;
defaultColors[key_glass_tabSelectedText] = 0xFF0d7fcf;
defaultColors[key_glass_tabUnselected] = 0xFF1A1D21;
defaultColors[key_botKeyboard_button_danger] = 0xFFdb4646;
defaultColors[key_botKeyboard_button_primary] = TELEGRAM_COLOR;
defaultColors[key_botKeyboard_button_success] = 0xFF40b135;
defaultColors[key_telegram_color_dialogsLogo] = 0xFF168bdb;
defaultColors[key_telegram_color] = TELEGRAM_COLOR;
defaultColors[key_telegram_color_text] = TELEGRAM_COLOR_TEXT;
return defaultColors;
}
public static SparseArray<String> createColorKeysMap() {
SparseArray<String> colorKeysMap = new SparseArray<>();
colorKeysMap.put(key_wallpaperFileOffset, "wallpaperFileOffset");
colorKeysMap.put(key_dialogBackground, "dialogBackground");
colorKeysMap.put(key_dialogBackgroundGray, "dialogBackgroundGray");
colorKeysMap.put(key_dialogTextBlack, "dialogTextBlack");
colorKeysMap.put(key_dialogTextLink, "dialogTextLink");
colorKeysMap.put(key_dialogLinkSelection, "dialogLinkSelection");
colorKeysMap.put(key_dialogTextBlue, "dialogTextBlue");
colorKeysMap.put(key_dialogTextBlue2, "dialogTextBlue2");
colorKeysMap.put(key_dialogTextBlue4, "dialogTextBlue4");
colorKeysMap.put(key_dialogTextGray, "dialogTextGray");
colorKeysMap.put(key_dialogTextGray2, "dialogTextGray2");
colorKeysMap.put(key_dialogTextGray3, "dialogTextGray3");
colorKeysMap.put(key_dialogTextGray4, "dialogTextGray4");
colorKeysMap.put(key_dialogTextHint, "dialogTextHint");
colorKeysMap.put(key_dialogInputField, "dialogInputField");
colorKeysMap.put(key_dialogInputFieldActivated, "dialogInputFieldActivated");
colorKeysMap.put(key_dialogCheckboxSquareBackground, "dialogCheckboxSquareBackground");
colorKeysMap.put(key_dialogCheckboxSquareCheck, "dialogCheckboxSquareCheck");
colorKeysMap.put(key_dialogCheckboxSquareUnchecked, "dialogCheckboxSquareUnchecked");
colorKeysMap.put(key_dialogCheckboxSquareDisabled, "dialogCheckboxSquareDisabled");
colorKeysMap.put(key_dialogScrollGlow, "dialogScrollGlow");
colorKeysMap.put(key_dialogRoundCheckBox, "dialogRoundCheckBox");
colorKeysMap.put(key_dialogRoundCheckBoxCheck, "dialogRoundCheckBoxCheck");
colorKeysMap.put(key_dialogRadioBackground, "dialogRadioBackground");
colorKeysMap.put(key_dialogRadioBackgroundChecked, "dialogRadioBackgroundChecked");
colorKeysMap.put(key_dialogLineProgress, "dialogLineProgress");
colorKeysMap.put(key_dialogLineProgressBackground, "dialogLineProgressBackground");
colorKeysMap.put(key_dialogButton, "dialogButton");
colorKeysMap.put(key_dialogButtonSelector, "dialogButtonSelector");
colorKeysMap.put(key_dialogIcon, "dialogIcon");
colorKeysMap.put(key_dialogGrayLine, "dialogGrayLine");
colorKeysMap.put(key_dialogTopBackground, "dialogTopBackground");
colorKeysMap.put(key_dialog_inlineProgressBackground, "dialog_inlineProgressBackground");
colorKeysMap.put(key_dialog_inlineProgress, "dialog_inlineProgress");
colorKeysMap.put(key_dialogSearchBackground, "dialogSearchBackground");
colorKeysMap.put(key_dialogSearchHint, "dialogSearchHint");
colorKeysMap.put(key_bot_loadingIcon, "bot_loadingIcon");
colorKeysMap.put(key_gift_ribbon, "gift_ribbon");
colorKeysMap.put(key_gift_ribbon_soldout, "gift_ribbon_soldout");
colorKeysMap.put(key_dialogSearchIcon, "dialogSearchIcon");
colorKeysMap.put(key_dialogSearchText, "dialogSearchText");
colorKeysMap.put(key_dialogFloatingButton, "dialogFloatingButton");
colorKeysMap.put(key_dialogFloatingButtonPressed, "dialogFloatingButtonPressed");
colorKeysMap.put(key_dialogFloatingIcon, "dialogFloatingIcon");
colorKeysMap.put(key_dialogShadowLine, "dialogShadowLine");
colorKeysMap.put(key_dialogEmptyImage, "dialogEmptyImage");
colorKeysMap.put(key_dialogEmptyText, "dialogEmptyText");
colorKeysMap.put(key_dialogSwipeRemove, "dialogSwipeRemove");
colorKeysMap.put(key_dialogReactionMentionBackground, "dialogReactionMentionBackground");
colorKeysMap.put(key_windowBackgroundWhite, "windowBackgroundWhite");
colorKeysMap.put(key_windowBackgroundUnchecked, "windowBackgroundUnchecked");
colorKeysMap.put(key_windowBackgroundChecked, "windowBackgroundChecked");
colorKeysMap.put(key_windowBackgroundCheckText, "windowBackgroundCheckText");
colorKeysMap.put(key_progressCircle, "progressCircle");
colorKeysMap.put(key_listSelector, "listSelectorSDK21");
colorKeysMap.put(key_windowBackgroundWhiteInputField, "windowBackgroundWhiteInputField");
colorKeysMap.put(key_windowBackgroundWhiteInputFieldActivated, "windowBackgroundWhiteInputFieldActivated");
colorKeysMap.put(key_pollCreateIcons, "pollCreateIcons");
colorKeysMap.put(key_windowBackgroundWhiteGrayIcon, "windowBackgroundWhiteGrayIcon");
colorKeysMap.put(key_windowBackgroundWhiteBlueText, "windowBackgroundWhiteBlueText");
colorKeysMap.put(key_windowBackgroundWhiteBlueText2, "windowBackgroundWhiteBlueText2");
colorKeysMap.put(key_windowBackgroundWhiteBlueText3, "windowBackgroundWhiteBlueText3");
colorKeysMap.put(key_windowBackgroundWhiteBlueText4, "windowBackgroundWhiteBlueText4");
colorKeysMap.put(key_windowBackgroundWhiteBlueText5, "windowBackgroundWhiteBlueText5");
colorKeysMap.put(key_windowBackgroundWhiteBlueText6, "windowBackgroundWhiteBlueText6");
colorKeysMap.put(key_windowBackgroundWhiteBlueText7, "windowBackgroundWhiteBlueText7");
colorKeysMap.put(key_windowBackgroundWhiteBlueButton, "windowBackgroundWhiteBlueButton");
colorKeysMap.put(key_windowBackgroundWhiteBlueIcon, "windowBackgroundWhiteBlueIcon");
colorKeysMap.put(key_windowBackgroundWhiteGreenText, "windowBackgroundWhiteGreenText");
colorKeysMap.put(key_windowBackgroundWhiteGreenText2, "windowBackgroundWhiteGreenText2");
colorKeysMap.put(key_windowBackgroundWhiteGrayText, "windowBackgroundWhiteGrayText");
colorKeysMap.put(key_windowBackgroundWhiteGrayText2, "windowBackgroundWhiteGrayText2");
colorKeysMap.put(key_windowBackgroundWhiteGrayText3, "windowBackgroundWhiteGrayText3");
colorKeysMap.put(key_windowBackgroundWhiteGrayText4, "windowBackgroundWhiteGrayText4");
colorKeysMap.put(key_windowBackgroundWhiteGrayText5, "windowBackgroundWhiteGrayText5");
colorKeysMap.put(key_windowBackgroundWhiteGrayText6, "windowBackgroundWhiteGrayText6");
colorKeysMap.put(key_windowBackgroundWhiteGrayText7, "windowBackgroundWhiteGrayText7");
colorKeysMap.put(key_windowBackgroundWhiteGrayText8, "windowBackgroundWhiteGrayText8");
colorKeysMap.put(key_windowBackgroundWhiteBlackText, "windowBackgroundWhiteBlackText");
colorKeysMap.put(key_windowBackgroundWhiteHintText, "windowBackgroundWhiteHintText");
colorKeysMap.put(key_windowBackgroundWhiteValueText, "windowBackgroundWhiteValueText");
colorKeysMap.put(key_windowBackgroundWhiteLinkText, "windowBackgroundWhiteLinkText");
colorKeysMap.put(key_windowBackgroundWhiteLinkSelection, "windowBackgroundWhiteLinkSelection");
colorKeysMap.put(key_windowBackgroundWhiteBlueHeader, "windowBackgroundWhiteBlueHeader");
colorKeysMap.put(key_switchTrack, "switchTrack");
colorKeysMap.put(key_switchTrackChecked, "switchTrackChecked");
colorKeysMap.put(key_switchTrackBlue, "switchTrackBlue");
colorKeysMap.put(key_switchTrackBlueChecked, "switchTrackBlueChecked");
colorKeysMap.put(key_switchTrackBlueThumb, "switchTrackBlueThumb");
colorKeysMap.put(key_switchTrackBlueThumbChecked, "switchTrackBlueThumbChecked");
colorKeysMap.put(key_switchTrackBlueSelector, "switchTrackBlueSelector");
colorKeysMap.put(key_switchTrackBlueSelectorChecked, "switchTrackBlueSelectorChecked");
colorKeysMap.put(key_switch2Track, "switch2Track");
colorKeysMap.put(key_switch2TrackChecked, "switch2TrackChecked");
colorKeysMap.put(key_checkboxSquareBackground, "checkboxSquareBackground");
colorKeysMap.put(key_checkboxSquareCheck, "checkboxSquareCheck");
colorKeysMap.put(key_checkboxSquareUnchecked, "checkboxSquareUnchecked");
colorKeysMap.put(key_checkboxSquareDisabled, "checkboxSquareDisabled");
colorKeysMap.put(key_windowBackgroundGray, "windowBackgroundGray");
colorKeysMap.put(key_windowBackgroundGrayShadow, "windowBackgroundGrayShadow");
colorKeysMap.put(key_emptyListPlaceholder, "emptyListPlaceholder");
colorKeysMap.put(key_divider, "divider");
colorKeysMap.put(key_graySection, "graySection");
colorKeysMap.put(key_graySectionText, "key_graySectionText");
colorKeysMap.put(key_radioBackground, "radioBackground");
colorKeysMap.put(key_radioBackgroundChecked, "radioBackgroundChecked");
colorKeysMap.put(key_checkbox, "checkbox");
colorKeysMap.put(key_checkboxDisabled, "checkboxDisabled");
colorKeysMap.put(key_checkboxCheck, "checkboxCheck");
colorKeysMap.put(key_fastScrollActive, "fastScrollActive");
colorKeysMap.put(key_fastScrollInactive, "fastScrollInactive");
colorKeysMap.put(key_fastScrollText, "fastScrollText");
colorKeysMap.put(key_text_RedRegular, "text_RedRegular");
colorKeysMap.put(key_text_RedBold, "text_RedBold");
colorKeysMap.put(key_fill_RedNormal, "fill_RedNormal");
colorKeysMap.put(key_fill_RedDark, "fill_RedDark");
colorKeysMap.put(key_inappPlayerPerformer, "inappPlayerPerformer");
colorKeysMap.put(key_inappPlayerTitle, "inappPlayerTitle");
colorKeysMap.put(key_inappPlayerBackground, "inappPlayerBackground");
colorKeysMap.put(key_inappPlayerPlayPause, "inappPlayerPlayPause");
colorKeysMap.put(key_inappPlayerClose, "inappPlayerClose");
colorKeysMap.put(key_returnToCallBackground, "returnToCallBackground");
colorKeysMap.put(key_returnToCallMutedBackground, "returnToCallMutedBackground");
colorKeysMap.put(key_returnToCallText, "returnToCallText");
colorKeysMap.put(key_contextProgressInner1, "contextProgressInner1");
colorKeysMap.put(key_contextProgressOuter1, "contextProgressOuter1");
colorKeysMap.put(key_contextProgressInner2, "contextProgressInner2");
colorKeysMap.put(key_contextProgressOuter2, "contextProgressOuter2");
colorKeysMap.put(key_contextProgressInner3, "contextProgressInner3");
colorKeysMap.put(key_contextProgressOuter3, "contextProgressOuter3");
colorKeysMap.put(key_contextProgressInner4, "contextProgressInner4");
colorKeysMap.put(key_contextProgressOuter4, "contextProgressOuter4");
colorKeysMap.put(key_avatar_text, "avatar_text");
colorKeysMap.put(key_avatar_backgroundSaved, "avatar_backgroundSaved");
colorKeysMap.put(key_avatar_background2Saved, "avatar_background2Saved");
colorKeysMap.put(key_avatar_backgroundArchived, "avatar_backgroundArchived");
colorKeysMap.put(key_avatar_backgroundArchivedHidden, "avatar_backgroundArchivedHidden");
colorKeysMap.put(key_avatar_backgroundRed, "avatar_backgroundRed");
colorKeysMap.put(key_avatar_backgroundOrange, "avatar_backgroundOrange");
colorKeysMap.put(key_avatar_backgroundViolet, "avatar_backgroundViolet");
colorKeysMap.put(key_avatar_backgroundGreen, "avatar_backgroundGreen");
colorKeysMap.put(key_avatar_backgroundCyan, "avatar_backgroundCyan");
colorKeysMap.put(key_avatar_backgroundBlue, "avatar_backgroundBlue");
colorKeysMap.put(key_avatar_backgroundPink, "avatar_backgroundPink");
colorKeysMap.put(key_avatar_background2Red, "avatar_background2Red");
colorKeysMap.put(key_avatar_background2Orange, "avatar_background2Orange");
colorKeysMap.put(key_avatar_background2Violet, "avatar_background2Violet");
colorKeysMap.put(key_avatar_background2Green, "avatar_background2Green");
colorKeysMap.put(key_avatar_background2Cyan, "avatar_background2Cyan");
colorKeysMap.put(key_avatar_background2Blue, "avatar_background2Blue");
colorKeysMap.put(key_avatar_background2Pink, "avatar_background2Pink");
colorKeysMap.put(key_avatar_backgroundInProfileBlue, "avatar_backgroundInProfileBlue");
colorKeysMap.put(key_avatar_backgroundActionBarBlue, "avatar_backgroundActionBarBlue");
colorKeysMap.put(key_avatar_actionBarSelectorBlue, "avatar_actionBarSelectorBlue");
colorKeysMap.put(key_avatar_actionBarIconBlue, "avatar_actionBarIconBlue");
colorKeysMap.put(key_avatar_subtitleInProfileBlue, "avatar_subtitleInProfileBlue");
colorKeysMap.put(key_avatar_nameInMessageRed, "avatar_nameInMessageRed");
colorKeysMap.put(key_avatar_nameInMessageOrange, "avatar_nameInMessageOrange");