-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProVK.css
More file actions
2115 lines (2058 loc) · 85.8 KB
/
Copy pathProVK.css
File metadata and controls
2115 lines (2058 loc) · 85.8 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
/*._post{
display:none !important;
}
._ads_promoted_post_data_w,
._ads_block_data_w {
display:block !important;
}*/
:root {
--white: #cdd6f4;
--blue_420: #5785ba;
--blue_550: #5785ba;
--blue_600: #5785ba;
--blue_640: #5785ba;
--blue_800: #5785ba;
--gray_20: #cdd6f4;
--gray_40: #cdd6f4;
--gray_70: #cdd6f4;
--gray_100: #cdd6f4;
--gray_100_alpha60: #cdd6f4;
--gray_200: #cdd6f4;
--gray_300: #cdd6f4;
--gray_400: #7f849c;
--gray_500: #cdd6f4;
--gray_700: #2a3742;
--gray_800: #1b222a;
--gray_800_alpha72: #1b222a;
--gray_900: #222c37;
--steel_gray_10: #cdd6f4;
--steel_gray_200_alpha12: #2a3742;
--steel_gray_200_alpha16: #2a3742;
--steel_gray_300: #5785ba;
--sky_300: #5785ba;
--black_alpha8: #1b222a;
--black_alpha72: #222c37;
}
:root,
[scheme=vkcom_light] {
--vkui--color_background_contrast_inverse: #2a3742;
}
[scheme=vkcom_dark],
.vkui--vkBase--dark,
.vkui--vkCom--dark,
:is([scheme='vkcom_dark'], .vkui--vkCom--dark) :is(.VKCOMMessenger__integrationRoot .MEAppConfig) {
--vkui--color_accent_blue: #5785ba;
--vkui--color_accent_blue--hover: #5785ba;
--vkui--color_accent_blue--active: #5785ba;
--vkui--color_background_accent: #5785ba;
--vkui--color_background_accent--hover: #5785ba;
--vkui--color_background_accent--active: #5785ba;
--vkui--color_background_accent_themed: #5785ba;
--vkui--color_background_accent_themed--hover: #5785ba;
--vkui--color_background_accent_themed--active: #5785ba;
--vkui--color_background_accent_tint--hover: #5785ba;
--vkui--color_background_accent_tint--active: #5785ba;
--vkui--color_background_accent_alternative: #5785ba;
--vkui--color_background_accent_alternative--hover: #5785ba;
--vkui--color_background_accent_alternative--active: #5785ba;
--vkui--color_background: #1b222a;
--vkui--color_background--hover: #1b222a;
--vkui--color_background--active: #1b222a;
--vkui--color_background_content: #222c37;
--vkui--color_background_content--hover: #222c37;
--vkui--color_background_content--active: #222c37;
--vkui--color_background_secondary: #2a3742;
--vkui--color_background_secondary--hover: #2a3742;
--vkui--color_background_secondary--active: #2a3742;
--vkui--color_background_secondary_alpha: #2a3742;
--vkui--color_background_secondary_alpha--hover: #2a3742;
--vkui--color_background_secondary_alpha--active: #2a3742;
--vkui--color_background_tertiary: #222c37;
--vkui--color_background_tertiary--hover: #222c37;
--vkui--color_background_tertiary--active: #222c37;
--vkui--color_background_tertiary_alpha: #222c37;
--vkui--color_background_tertiary_alpha--hover: #222c37;
--vkui--color_background_tertiary_alpha--active: #222c37;
--vkui--color_background_contrast: #5785ba;
--vkui--color_background_contrast--hover: #222c37;
--vkui--color_background_contrast--active: #222c37;
--vkui--color_background_contrast_secondary_alpha: #222c37;
--vkui--color_background_contrast_inverse--hover: #222c37;
--vkui--color_background_contrast_inverse--active: #222c37;
--vkui--color_background_contrast_themed: #1b222a;
--vkui--color_background_contrast_themed--hover: #1b222a;
--vkui--color_background_contrast_themed--active: #1b222a;
--vkui--color_background_modal: #222c37;
--vkui--color_background_modal--hover: #222c37;
--vkui--color_background_modal--active: #222c37;
--vkui--color_background_modal_inverse: #cdd6f4;
--vkui--color_background_modal_inverse--hover: #cdd6f4;
--vkui--color_background_modal_inverse--active: #cdd6f4;
--vkui--color_background_positive: #5785ba;
--vkui--color_background_positive--hover: #5785ba;
--vkui--color_background_positive--active: #5785ba;
--vkui--color_background_positive_tint: #2a3742;
--vkui--color_background_positive_tint--hover: #2a3742;
--vkui--color_background_positive_tint--active: #2a3742;
--vkui--color_background_warning: #2a3742;
--vkui--color_background_warning--hover: #2a3742;
--vkui--color_background_warning--active: #2a3742;
--vkui--color_background_negative: #2a3742;
--vkui--color_background_negative--hover: #2a3742;
--vkui--color_background_negative--active: #2a3742;
--vkui--color_background_negative_tint: #2a3742;
--vkui--color_background_negative_tint--hover: #2a3742;
--vkui--color_background_negative_tint--active: #2a3742;
--vkui--color_field_background: #1b222a;
--vkui--color_field_background--hover: #1b222a;
--vkui--color_field_background--active: #1b222a;
--vkui--color_header_background: #222c37;
--vkui--color_header_background--hover: #222c37;
--vkui--color_header_background--active: #222c37;
--vkui--color_text_accent: #5785ba;
--vkui--color_text_accent--hover: #5785ba;
--vkui--color_text_accent--active: #5785ba;
--vkui--color_text_accent_themed: #cdd6f4;
--vkui--color_text_accent_themed--hover: #cdd6f4;
--vkui--color_text_accent_themed--active: #cdd6f4;
--vkui--color_text_primary: #cdd6f4;
--vkui--color_text_primary--hover: #cdd6f4;
--vkui--color_text_primary--active: #cdd6f4;
--vkui--color_text_primary_invariably--hover: #cdd6f4;
--vkui--color_text_primary_invariably--active: #cdd6f4;
--vkui--color_text_secondary: #7f849c;
--vkui--color_text_secondary--hover: #7f849c;
--vkui--color_text_secondary--active: #7f849c;
--vkui--color_text_subhead: #cdd6f4;
--vkui--color_text_subhead--hover: #cdd6f4;
--vkui--color_text_subhead--active: #cdd6f4;
--vkui--color_text_tertiary: #cdd6f4;
--vkui--color_text_tertiary--hover: #cdd6f4;
--vkui--color_text_tertiary--active: #cdd6f4;
--vkui--color_text_contrast: #cdd6f4;
--vkui--color_text_contrast--hover: #cdd6f4;
--vkui--color_text_contrast--active: #cdd6f4;
--vkui--color_text_contrast_themed: #222c37;
--vkui--color_text_contrast_themed--hover: #222c37;
--vkui--color_text_contrast_themed--active: #222c37;
--vkui--color_text_positive--hover: #cdd6f4;
--vkui--color_text_positive--active: #cdd6f4;
--vkui--color_text_negative: #cdd6f4;
--vkui--color_text_negative--hover: #cdd6f4;
--vkui--color_text_negative--active: #cdd6f4;
--vkui--color_text_link: #5785ba;
--vkui--color_text_link--hover: #5785ba;
--vkui--color_text_link--active: #5785ba;
--vkui--color_text_link_themed: #cdd6f4;
--vkui--color_text_link_themed--hover: #cdd6f4;
--vkui--color_text_link_themed--active: #cdd6f4;
--vkui--color_text_link_tint--hover: #5785ba;
--vkui--color_text_link_tint--active: #5785ba;
--vkui--color_text_link_visited--hover: #5785ba;
--vkui--color_text_link_visited--active: #5785ba;
--vkui--color_text_muted: #cdd6f4;
--vkui--color_text_muted--hover: #cdd6f4;
--vkui--color_text_muted--active: #cdd6f4;
--vkui--color_link_contrast--hover: #cdd6f4;
--vkui--color_link_contrast--active: #cdd6f4;
--vkui--color_icon_accent: #5785ba;
--vkui--color_icon_accent--hover: #5785ba;
--vkui--color_icon_accent--active: #5785ba;
--vkui--color_icon_accent_themed: #5785ba;
--vkui--color_icon_accent_themed--hover: #5785ba;
--vkui--color_icon_accent_themed--active: #5785ba;
--vkui--color_icon_primary: #5785ba;
--vkui--color_icon_primary--hover: #5785ba;
--vkui--color_icon_primary--active: #5785ba;
--vkui--color_icon_primary_invariably: #2a3742;
--vkui--color_icon_primary_invariably--hover: #2a3742;
--vkui--color_icon_primary_invariably--active: #2a3742;
--vkui--color_icon_medium: #5785ba;
--vkui--color_icon_medium--hover: #5785ba;
--vkui--color_icon_medium--active: #5785ba;
--vkui--color_icon_medium_alpha: #5785ba;
--vkui--color_icon_medium_alpha--hover: #5785ba;
--vkui--color_icon_medium_alpha--active: #5785ba;
--vkui--color_icon_secondary: #5785ba;
--vkui--color_icon_secondary--hover: #5785ba;
--vkui--color_icon_secondary--active: #5785ba;
--vkui--color_icon_secondary_alpha: #5785ba;
--vkui--color_icon_secondary_alpha--hover: #5785ba;
--vkui--color_icon_secondary_alpha--active: #5785ba;
--vkui--color_icon_tertiary: #5785ba;
--vkui--color_icon_tertiary--hover: #5785ba;
--vkui--color_icon_tertiary--active: #5785ba;
--vkui--color_icon_tertiary_alpha: #5785ba;
--vkui--color_icon_tertiary_alpha--hover: #5785ba;
--vkui--color_icon_tertiary_alpha--active: #5785ba;
--vkui--color_icon_contrast: #5785ba;
--vkui--color_icon_contrast--hover: #5785ba;
--vkui--color_icon_contrast--active: #5785ba;
--vkui--color_icon_contrast_themed: #1b222a;
--vkui--color_icon_contrast_themed--hover: #1b222a;
--vkui--color_icon_contrast_themed--active: #1b222a;
--vkui--color_icon_contrast_secondary--hover: #5785ba;
--vkui--color_icon_contrast_secondary--active: #5785ba;
--vkui--color_icon_positive--hover: #5785ba;
--vkui--color_icon_positive--active: #5785ba;
--vkui--color_icon_negative: #5785ba;
--vkui--color_icon_negative--hover: #5785ba;
--vkui--color_icon_negative--active: #5785ba;
--vkui--color_stroke_accent: #5785ba;
--vkui--color_stroke_accent--hover: #5785ba;
--vkui--color_stroke_accent--active: #5785ba;
--vkui--color_stroke_accent_themed: #cdd6f4;
--vkui--color_stroke_accent_themed--hover: #cdd6f4;
--vkui--color_stroke_accent_themed--active: #cdd6f4;
--vkui--color_separator_primary: #222c37;
--vkui--color_separator_primary--hover: #2a3742;
--vkui--color_separator_primary--active: #222c37;
--vkui--color_separator_primary2x: #2a3742;
--vkui--color_separator_primary2x--hover: #2a3742;
--vkui--color_separator_primary2x--active: #2a3742;
--vkui--color_separator_primary3x: #2a3742;
--vkui--color_separator_primary3x--hover: #2a3742;
--vkui--color_separator_primary3x--active: #2a3742;
--vkui--color_separator_primary_alpha: #2a3742;
--vkui--color_separator_primary_alpha--hover: #2a3742;
--vkui--color_separator_primary_alpha--active: #2a3742;
--vkui--color_separator_secondary: #2a3742;
--vkui--color_separator_secondary--hover: #2a3742;
--vkui--color_separator_secondary--active: #2a3742;
--vkui--color_stroke_positive--hover: #2a3742;
--vkui--color_stroke_positive--active: #2a3742;
--vkui--color_stroke_negative: #2a3742;
--vkui--color_stroke_negative--hover: #2a3742;
--vkui--color_stroke_negative--active: #2a3742;
--vkui--color_stroke_contrast: #cdd6f4;
--vkui--color_stroke_contrast--hover: #cdd6f4;
--vkui--color_stroke_contrast--active: #cdd6f4;
--vkui--color_image_border_alpha: #2a3742;
--vkui--color_image_border_alpha--hover: #2a3742;
--vkui--color_image_border_alpha--active: #2a3742;
--vkui--color_field_border_alpha: #222c37;
--vkui--color_field_border_alpha--hover: #222c37;
--vkui--color_field_border_alpha--active: #222c37;
--vkui--color_accent_green: #5785ba;
--vkui--color_accent_green--hover: #5785ba;
--vkui--color_accent_green--active: #5785ba;
--vkui--color_action_sheet_text: #5785ba;
--vkui--color_action_sheet_text--hover: #5785ba;
--vkui--color_action_sheet_text--active: #5785ba;
--vkui--color_image_placeholder: #2a3742;
--vkui--color_image_placeholder--hover: #2a3742;
--vkui--color_image_placeholder--active: #2a3742;
--vkui--color_image_placeholder_alpha: #2a3742;
--vkui--color_image_placeholder_alpha--hover: #2a3742;
--vkui--color_image_placeholder_alpha--active: #2a3742;
--vkui--color_skeleton_from: #1b222a;
--vkui--color_skeleton_from--hover: #1b222a;
--vkui--color_skeleton_from--active: #1b222a;
--vkui--color_skeleton_to: #2a3742;
--vkui--color_skeleton_to--hover: #2a3742;
--vkui--color_skeleton_to--active: #2a3742;
--vkui--color_button_text: #cdd6f4;
--vkui--color_button_text--hover: #cdd6f4;
--vkui--color_button_text--active: #cdd6f4;
--vkui--color_button_icon: #cdd6f4;
--vkui--color_button_icon--hover: #cdd6f4;
--vkui--color_button_icon--active: #cdd6f4;
--vkui--color_button_stroke: #cdd6f4;
--vkui--color_button_stroke--hover: #cdd6f4;
--vkui--color_button_stroke--active: #cdd6f4;
--vkui--color_write_bar_icon: #cdd6f4;
--vkui--color_write_bar_icon--hover: #cdd6f4;
--vkui--color_write_bar_icon--active: #cdd6f4;
--vkui--color_write_bar_input_background: #2a3742;
--vkui--color_write_bar_input_background--hover: #2a3742;
--vkui--color_write_bar_input_background--active: #2a3742;
--vkui--color_write_bar_input_border: #2a3742;
--vkui--color_write_bar_input_border--hover: #2a3742;
--vkui--color_write_bar_input_border--active: #2a3742;
--vkui--color_write_bar_input_border_alpha: #2a3742;
--vkui--color_write_bar_input_border_alpha--hover: #2a3742;
--vkui--color_write_bar_input_border_alpha--active: #2a3742;
--vkui--color_track_background: #1b222a;
--vkui--color_track_background--hover: #1b222a;
--vkui--color_track_background--active: #1b222a;
--vkui--color_track_buffer: #5785ba;
--vkui--color_track_buffer--hover: #5785ba;
--vkui--color_track_buffer--active: #5785ba;
--vkui--color_search_field_background: #2a3742;
--vkui--color_search_field_background--hover: #2a3742;
--vkui--color_search_field_background--active: #2a3742;
--vkui--color_panel_header_icon: #5785ba;
--vkui--color_panel_header_icon--hover: #5785ba;
--vkui--color_panel_header_icon--active: #5785ba;
--vkui--color_transparent--hover: #2a3742;
--vkui--color_transparent--active: #2a3742;
--vkui--vkontakte_color_snippet_border_alpha: #2a3742;
--vkui--vkontakte_color_snippet_border_alpha--hover: #2a3742;
--vkui--vkontakte_color_snippet_border_alpha--active: #2a3742;
--vkui--vkontakte_color_snippet_background: #2a3742;
--vkui--vkontakte_color_snippet_background--hover: #2a3742;
--vkui--vkontakte_color_snippet_background--active: #2a3742;
--vkui--vkontakte_color_input_border: #2a3742;
--vkui--vkontakte_color_input_border--hover: #2a3742;
--vkui--vkontakte_color_input_border--active: #2a3742;
--vkui--vkontakte_color_search_bar_background: #2a3742;
--vkui--vkontakte_color_search_bar_background--hover: #2a3742;
--vkui--vkontakte_color_search_bar_background--active: #2a3742;
--vkui--vkontakte_color_search_bar_field_tint: #2a3742;
--vkui--vkontakte_color_search_bar_field_tint--hover: #2a3742;
--vkui--vkontakte_color_search_bar_field_tint--active: #2a3742;
--vkui--vkontakte_background_hover_alpha: #2a3742;
--vkui--vkontakte_background_hover_alpha--hover: #2a3742;
--vkui--vkontakte_background_hover_alpha--active: #2a3742;
--vkui--vkontakte_color_accent_alternate: #cdd6f4;
--vkui--vkontakte_color_accent_alternate--hover: #cdd6f4;
--vkui--vkontakte_color_accent_alternate--active: #cdd6f4;
--vkui--vkontakte_color_background_suggestions: #2a3742;
--vkui--vkontakte_color_background_suggestions--hover: #2a3742;
--vkui--vkontakte_color_background_suggestions--active: #2a3742;
--vkui--vkontakte_color_background_keyboard: #2a3742;
--vkui--vkontakte_color_background_keyboard--hover: #2a3742;
--vkui--vkontakte_color_background_keyboard--active: #2a3742;
--vkui--vkontakte_color_content_placeholder_icon--hover: #cdd6f4;
--vkui--vkontakte_color_content_placeholder_icon--active: #cdd6f4;
--vkui--vkontakte_color_text_name: #cdd6f4;
--vkui--vkontakte_color_text_name--hover: #cdd6f4;
--vkui--vkontakte_color_text_name--active: #cdd6f4;
--vkui--vkontakte_color_control_background: #1b222a;
--vkui--vkontakte_color_control_background--hover: #1b222a;
--vkui--vkontakte_color_control_background--active: #1b222a;
--vkui--vkontakte_color_control_foreground: #cdd6f4;
--vkui--vkontakte_color_control_foreground--hover: #cdd6f4;
--vkui--vkontakte_color_control_foreground--active: #cdd6f4;
--vkui--vkontakte_color_control_tint_muted: #cdd6f4;
--vkui--vkontakte_color_control_tint_muted--hover: #cdd6f4;
--vkui--vkontakte_color_control_tint_muted--active: #cdd6f4;
--vkui--vkontakte_color_header_search_field_background: #2a3742;
--vkui--vkontakte_color_header_search_field_background--hover: #2a3742;
--vkui--vkontakte_color_header_search_field_background--active: #2a3742;
--vkui--vkontakte_color_header_search_field_tint: #cdd6f4;
--vkui--vkontakte_color_header_search_field_tint--hover: #cdd6f4;
--vkui--vkontakte_color_header_search_field_tint--active: #cdd6f4;
--vkui--vkontakte_color_icon_outline_medium: #5785ba;
--vkui--vkontakte_color_icon_outline_medium--hover: #5785ba;
--vkui--vkontakte_color_icon_outline_medium--active: #5785ba;
--vkui--vkontakte_color_icon_outline_secondary: #cdd6f4;
--vkui--vkontakte_color_icon_outline_secondary--hover: #cdd6f4;
--vkui--vkontakte_color_icon_outline_secondary--active: #cdd6f4;
--vkui--vkontakte_color_skeleton_shimmer_from: #222c37;
--vkui--vkontakte_color_skeleton_shimmer_from--hover: #222c37;
--vkui--vkontakte_color_skeleton_shimmer_from--active: #222c37;
--vkui--vkontakte_color_loader_background: #1b222a;
--vkui--vkontakte_color_loader_background--hover: #1b222a;
--vkui--vkontakte_color_loader_background--active: #1b222a;
--vkui--vkontakte_color_music_playback_icon: #cdd6f4;
--vkui--vkontakte_color_music_playback_icon--hover: #cdd6f4;
--vkui--vkontakte_color_music_playback_icon--active: #cdd6f4;
--vkui--vkontakte_color_status_background: #222c37;
--vkui--vkontakte_color_status_background--hover: #222c37;
--vkui--vkontakte_color_status_background--active: #222c37;
--vkui--vkontakte_color_placeholder_icon_foreground_primary: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_foreground_primary--hover: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_foreground_primary--active: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_foreground_secondary: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_foreground_secondary--hover: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_foreground_secondary--active: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_tint: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_tint--hover: #cdd6f4;
--vkui--vkontakte_color_placeholder_icon_tint--active: #cdd6f4;
--vkui--vkontakte_color_poll_option_background: #cdd6f4;
--vkui--vkontakte_color_poll_option_background--hover: #cdd6f4;
--vkui--vkontakte_color_poll_option_background--active: #cdd6f4;
--vkui--vkontakte_color_tabbar_active_icon: #cdd6f4;
--vkui--vkontakte_color_tabbar_active_icon--hover: #cdd6f4;
--vkui--vkontakte_color_tabbar_active_icon--active: #cdd6f4;
--vkui--vkontakte_color_tabbar_background: #2a3742;
--vkui--vkontakte_color_tabbar_background--hover: #2a3742;
--vkui--vkontakte_color_tabbar_background--active: #2a3742;
--vkui--vkontakte_color_tabbar_inactive_icon: #7f849c;
--vkui--vkontakte_color_tabbar_inactive_icon--hover: #7f849c;
--vkui--vkontakte_color_tabbar_inactive_icon--active: #7f849c;
--vkui--vkontakte_color_tabbar_tablet_text_secondary: #7f849c;
--vkui--vkontakte_color_tabbar_tablet_text_secondary--hover: #7f849c;
--vkui--vkontakte_color_tabbar_tablet_text_secondary--active: #7f849c;
--vkui--vkontakte_color_toolbar_attach_background_from: #7f849c;
--vkui--vkontakte_color_toolbar_attach_background_from--hover: #7f849c;
--vkui--vkontakte_color_toolbar_attach_background_from--active: #7f849c;
--vkui--vkontakte_color_splash_screen_icon: #2a3742;
--vkui--vkontakte_color_splash_screen_icon--hover: #2a3742;
--vkui--vkontakte_color_splash_screen_icon--active: #2a3742;
--vkui--vkontakte_color_icon_name: #cdd6f4;
--vkui--vkontakte_color_icon_name--hover: #cdd6f4;
--vkui--vkontakte_color_icon_name--active: #cdd6f4;
--vkui--vkontakte_color_panel_tab_active_text: #cdd6f4;
--vkui--vkontakte_color_panel_tab_active_text--hover: #cdd6f4;
--vkui--vkontakte_color_panel_tab_active_text--active: #cdd6f4;
--vkui--vkontakte_color_modal_card_header_close: #cdd6f4;
--vkui--vkontakte_color_modal_card_header_close--hover: #cdd6f4;
--vkui--vkontakte_color_modal_card_header_close--active: #cdd6f4;
--vkui--vkontakte_im_bubble_button_foreground: #cdd6f4;
--vkui--vkontakte_im_bubble_button_foreground--hover: #cdd6f4;
--vkui--vkontakte_im_bubble_button_foreground--active: #cdd6f4;
--vkui--vkontakte_im_bubble_incoming_highlighted: #cdd6f4;
--vkui--vkontakte_im_bubble_incoming_highlighted--hover: #cdd6f4;
--vkui--vkontakte_im_bubble_incoming_highlighted--active: #cdd6f4;
--vkui--vkontakte_im_bubble_outgoing_alternate: #1b222a;
--vkui--vkontakte_im_bubble_outgoing_alternate--hover: #1b222a;
--vkui--vkontakte_im_bubble_outgoing_alternate--active: #1b222a;
--vkui--vkontakte_im_attach_tint: #cdd6f4;
--vkui--vkontakte_im_attach_tint--hover: #cdd6f4;
--vkui--vkontakte_im_attach_tint--active: #cdd6f4;
--vkui--vkontakte_im_reply_separator: #5785ba;
--vkui--vkontakte_im_reply_separator--hover: #5785ba;
--vkui--vkontakte_im_reply_separator--active: #5785ba;
--vkui--vkontakte_im_toolbar_voice_msg_background: #1b222a;
--vkui--vkontakte_im_toolbar_voice_msg_background--hover: #1b222a;
--vkui--vkontakte_im_toolbar_voice_msg_background--active: #1b222a;
--vkui--vkontakte_color_im_forward_line_alpha: #5785ba;
--vkui--vkontakte_color_im_forward_line_alpha--hover: #5785ba;
--vkui--vkontakte_color_im_forward_line_alpha--active: #5785ba;
--vkui--vkontakte_color_im_bubble_incoming: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming--hover: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming--active: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming_alternate: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming_alternate--hover: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming_alternate--active: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming_expiring: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming_expiring--hover: #2a3742;
--vkui--vkontakte_color_im_bubble_incoming_expiring--active: #2a3742;
--vkui--vkontakte_color_im_bubble_outgoing: #2a3742;
--vkui--vkontakte_color_im_bubble_outgoing--hover: #2a3742;
--vkui--vkontakte_color_im_bubble_outgoing--active: #2a3742;
--vkui--vkontakte_color_im_bubble_gift_text: #cdd6f4;
--vkui--vkontakte_color_im_bubble_gift_text--hover: #cdd6f4;
--vkui--vkontakte_color_im_bubble_gift_text--active: #cdd6f4;
--vkui--vkontakte_color_im_bubble_gift_text_secondary: #cdd6f4;
--vkui--vkontakte_color_im_bubble_gift_text_secondary--hover: #cdd6f4;
--vkui--vkontakte_color_im_bubble_gift_text_secondary--active: #cdd6f4;
--vkui--vkontakte_color_im_text_name: #5785ba;
--vkui--vkontakte_color_im_text_name--hover: #5785ba;
--vkui--vkontakte_color_im_text_name--active: #5785ba;
--vkui--vkontakte_button_muted_background: #2a3742;
--vkui--vkontakte_button_muted_background--hover: #2a3742;
--vkui--vkontakte_button_muted_background--active: #2a3742;
--vkui--vkontakte_button_tertiary_foreground: #cdd6f4;
--vkui--vkontakte_button_tertiary_foreground--hover: #cdd6f4;
--vkui--vkontakte_button_tertiary_foreground--active: #cdd6f4;
--vkui--vkontakte_float_button_foreground: #cdd6f4;
--vkui--vkontakte_float_button_foreground--hover: #cdd6f4;
--vkui--vkontakte_float_button_foreground--active: #cdd6f4;
--vkui--vkontakte_landing_background: #222c37;
--vkui--vkontakte_landing_background--hover: #222c37;
--vkui--vkontakte_landing_background--active: #222c37;
--vkui--vkontakte_im_bubble_incoming_alternate_highlighted: #cdd6f4;
--vkui--vkontakte_im_bubble_incoming_alternate_highlighted--hover: #cdd6f4;
--vkui--vkontakte_im_bubble_incoming_alternate_highlighted--active: #cdd6f4;
--vkui--vkontakte_im_bubble_outgoing_highlighted: #cdd6f4;
--vkui--vkontakte_im_bubble_outgoing_highlighted--hover: #cdd6f4;
--vkui--vkontakte_im_bubble_outgoing_highlighted--active: #cdd6f4;
--vkui--vkontakte_stories_skeleton_loader_background: #1b222a;
--vkui--vkontakte_stories_skeleton_loader_background--hover: #1b222a;
--vkui--vkontakte_stories_skeleton_loader_background--active: #1b222a;
--vkui--vkontakte_color_modal_card_border_alpha: none;
--vkui--vkontakte_color_modal_card_border_alpha--hover: none;
--vkui--vkontakte_color_modal_card_border_alpha--active: none;
--vkui--vkontakte_color_landing_snippet_border_alpha: none;
--vkui--vkontakte_color_landing_snippet_border_alpha--hover: none;
--vkui--vkontakte_color_landing_snippet_border_alpha--active: none;
--convoHistoryBackgroundColor: #2a3742;
}
body,
.slider_loading_bar,
.audio_page_player2 .audio_page_player_track_slider.slider.slider_size_1 .slider_slide,
.audio_page_player2 .audio_page_player_volume_slider.slider.slider_size_1 .slider_slide,
.Slider-module__backTransparent--L5JfD.Slider-module__sliderPrimary--HV2wY::before,
.slider.slider_size_1 .slider_slide,
.videoplayer_slider ._bars_wrap,
.videoplayer_slider ._loaded,
.vkuiSegmentedControl,
.article_layer .article_layer__views,
.article_dark .article_layer__content_footer,
.ads-story_dummy,
.Office__content .ads_edit_page_wrap3,
.Breadcrumbs,
.SideOfficeMenu__navList,
.SideOfficeMenu__footer,
.SideOfficeMenu__navList::after,
.SideOfficeMenu__nav::after,
#ads_page,
.Breadcrumbs__list,
.Office .ads_general_info_preview,
.Office #ad_preview_top,
.vkitSlider__backTransparent--9Tf61.vkitSlider__sliderPrimary--HWoOY::before,
.vkuitrack--r7_Kp,
.inlMainTable td.inlContent,
.Office__content .paginated_table > table > tbody > tr > th.even_row,
.Office__content .paginated_table > table > tbody > tr > td.even_row,
.Office__content .ads_unions_table > tbody > tr > th.even_row,
.Office__content .ads_unions_table > tbody > tr > td.even_row,
.dd_menu .dd_menu_body table .dd_menu_rows a,
.dd_menu .dd_menu_body table .dd_menu_rows a:first-child,
.dd_menu .dd_menu_body table .dd_menu_rows,
.Office__content .ui_table .ui_table_cell_empty,
.Header__left,
.CostEditFormPopover {
background: #1b222a;
}
.redesign_web .RecommendedPlaylist__audios,
.StatusPanel-module__inner--DB7re,
.pv_more_acts,
#pv_more_acts_tt,
.pv_bottom_info,
.AttachWallNew__link--post,
.vkuiPopover__in--withStyling,
.eltt.feature_info_tooltip,
.ConvoMain__themeWrapper,
.wdd_list,
.videoplayer_settings_menu_list,
.videoplayer_settings_menu_sublist,
.DatePicker .groups_edit_datepicker,
.GoalsList__column,
.GoalsFilterList__item,
.ads_edit_link_type_card,
.ads_edit_link_type_card_image_wrapper,
.Table__FiltersPanel .Table__Button.Table__FilterMenuButton,
.Table__FiltersPanel .Table__Button.ads_stat_date_range,
.Table__FiltersPanel .Table__Button,
.Table__wrapper,
.Table__Cell--header,
.Table__Cell--footer,
.Table__Cell,
.Header,
.ads_edit_panel_preview .ads_ad_box .ads_ad_box_border,
.PredictionWidget__header,
.ads_schedule_cell,
.PredictionWidget,
.Suggestion__Item,
.Suggestions,
.ads_schedule_cell_checked:hover,
.ads_schedule_cell_checked.ads_schedule_cell_hovered,
.Office #ad_preview_top .ads_ad_box,
.videoplayer_context_menu,
.HeaderProfile__Dropdown,
.vkuiCalendar,
.FCConvo__content,
.post_from_tt_row.active,
.vkuiTooltipBase__content,
.tt_w.like_tt,
html.B4t8_W1rj4lX7nwx .StoryFeedBlockWrapper a[class*="StoryCard__root"],
html.B4t8_W1rj4lX7nwx .StoryFeedBlockWrapper div[class*="StoryCard__root"],
html.B4t8_W1rj4lX7nwx .StoryFeedBlockWrapper__root a[class*="StoryCard__root"],
html.B4t8_W1rj4lX7nwx .StoryFeedBlockWrapper__root div[class*="StoryCard__root"],
html.B4t8_W1rj4lX7nwx .stories_feed_wrap a[class*="StoryCard__root"],
html.B4t8_W1rj4lX7nwx .stories_feed_wrap div[class*="StoryCard__root"],
.ComposerFormattingMenu__panel,
.media_voting,
.story_poll .box_body,
.ReactionChip--incoming,
.BudgetBalance,
.BudgetStats,
.TableColumnsSettings,
.Office__content .ui_table th.ui_table_cell,
.Office__content .ui_table tr.ui_table_row.even,
.Office__content .ui_table tr.ui_table_row:hover,
.HeaderProfile__image,
.ReactionChip--outgoing,
.article_ed__caredit,
.article_ed__caredit .article_ed__caredit_header,
.HeaderSectionSwitcher__button,
.exchange_not_found.table,
.HeaderSectionSwitcherDropdown__itemTitle,
.HeaderSectionSwitcherDropdown__listItemLink,
.HeaderSectionSwitcherDropdown,
.vkuiPopover__inWithStyling,
.vkuiCalendar__host,
.vkuiCustomSelectDropdown__host{
background: #222c37;
}
.reply_fakebox,
.deep_active .replies .reply_box div.submit_post_field,
.ui_gallery_wall_cards .wall_card,
.ui_search_new .ui_search_input_inner,
.ui_search.ui_search_new.ui_search_with_custom_controls.ui_search_field_empty .ui_search_custom_ctrl,
.selector_container table.selector_table,
.big.selector_container.selector_focused.reverse table.selector_table,
.prefix_input_wrap,
.notifier_baloon,
.videoplayer_settings_menu_list_item:hover,
.videoplayer_settings_menu_sublist_item:hover,
.videoplayer_settings_menu_list_item.active:hover,
.videoplayer_settings_menu_sublist_item.active:hover,
.vkuiSegmentedControl__slider,
.ConvoList__item--separator::before,
.SideOfficeMenu__link--active,
.SideOfficeMenu__link--active:focus,
.SideOfficeMenu__link--active:hover,
.SideOfficeMenu__link:focus,
.SideOfficeMenu__link:hover,
.GoalsListItem,
.GoalsFilterList__item--selected,
.Table__Cell--hasSort:hover,
.Table__Row--body:hover .Table__Cell,
#ads_graph_navigation a.nav:hover,
#ads_demography_navigation a.nav:hover,
.Office__content #ads_graph_navigation a.nav_selected,
.Office__content #ads_graph_navigation a.nav_selected:hover,
.Office__content #ads_demography_navigation a.nav_selected,
.Office__content #ads_demography_navigation a.nav_selected:hover,
.Table__FiltersPanel .Table__Button:hover,
.Table__Cell--status_view.Table__Cell--editable:hover,
.Table__Cell--status_view_on.Table__Cell--editable:hover,
.HeaderSectionSwitcher__button:focus,
.HeaderSectionSwitcher__button:hover,
.HeaderSectionSwitcher__button--open,
.HeaderSectionSwitcherDropdown__listItemLink--active,
.HeaderSectionSwitcherDropdown__listItemLink:focus,
.HeaderSectionSwitcherDropdown__listItemLink:hover,
a.HeaderSectionSwitcherDropdown__itemTitle:focus,
a.HeaderSectionSwitcherDropdown__itemTitle:hover,
.HeaderNotifier:hover,
.HeaderNotifier.active,
.HeaderProfile:focus,
.HeaderProfile:hover,
.FormulaInput__SuggestionsContainer,
.Suggestion__Item:hover,
.Suggestion__Item--selected,
.Suggestion__Item--selected:hover,
.Office .ads_relevance_score,
.ads_main_notice,
.videoplayer_context_menu ._item:hover,
.ads_ad_snippet,
.mv_chat_reply_form,
.groups_cover_box .groups_edit_cover_wrap .page_cover_menu .page_cover_action.delete,
.groups_cover_box .groups_edit_cover_wrap .page_cover_menu .page_cover_action,
.groups_cover_box .groups_edit_cover_wrap .page_cover_menu .page_cover_action.upload,
.ConvoMessage--selected,
.pt_search_container input.text,
.ads_stat_date_range,
.ads_stat_date_range:hover,
.Inputs__input,
.Inputs__input:focus,
.Inputs__input--focused,
.StaticRanges__label:hover,
.HeaderBudget:focus,
.HeaderBudget:hover,
.HeaderProfile__DropdownUser:hover,
.HeaderProfile__DropdownRow:hover,
.ads_edit_ad_submit_post_box,
.Input,
#market_search_wrap .ui_search_with_custom_controls .ui_search_fltr_control,
.audio-msg-track--transcriptToggle,
.audio-msg-track--transcriptToggle:hover,
.vkitAttachmentLabel__label--yiFj8.vkitAttachmentLabel__label--yiFj8,
.ConvoMessageWithoutBubble:hover,
.Reply--isOut.Reply--clickable:not(.Reply--withoutBubble):hover::before,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_live .groups_edit_cover_wrap_live_previews .groups_edit_cover_wrap_live_upload.processing .groups_edit_cover_wrap_live_upload_preview .groups_edit_cover_wrap_live_upload_processing,
.PinnedMessage__container--Ycf2B,
.media_voting_option,
.media_voting_option::before,
.vkuiselected--HeAw6.vkuimodeAccent--FZTmT,
.vkuihover--eZhd8.vkuimodeAccent--FZTmT,
.EditableUnionName__editButton:hover,
.EditableUnionName__inputWrapper,
.TableColumnsSettings__selectedColumnsItem,
.dd_menu .dd_menu_body table .dd_menu_rows a:hover,
.vkuiFormField__hover,
.vkuiFormField__modeDefault,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_live .groups_edit_cover_wrap_live_previews .groups_edit_cover_wrap_live_upload .groups_edit_cover_wrap_live_upload_placeholder_loading,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_main_wrap .groups_edit_cover_wrap_main_wrap_loading,
.eltt.feature_intro_blue_tt,
.HeaderSectionSwitcherDropdown__itemTitle:focus,
.HeaderSectionSwitcherDropdown__itemTitle:hover,
.exchange_table th {
background: #2a3742;
}
.vkuiTabsItem--selected.vkuiTabsItem--mode-accent,
.vkuiInternalHorizontalScroll .vkuiTabsItem:hover,
.DateSeparator--active:not(.DateSeparator--themed),
.vkuiScrollArrow__icon,
.vkuiSwitch__track,
.ui_tab_new.ui_tab_sel,
.ui_tab_new.ui_tab_group_sel,
.ui_tab_new.ui_tab_sel:hover,
.ui_tab_new.ui_tab_group_sel:hover,
.ui_tab_new.ui_tab_sel:active,
.ui_tab_new.ui_tab_group_sel:active,
.ConvoMain__composerContent,
input.text,
input.search,
input.big_text,
input.dark,
.fakeinput,
div[contenteditable=true],
textarea,
.tdd_control,
.Office__content .paginated_table > table > tbody > tr > th,
.Office__content .ads_unions_table > tbody > tr > th,
.vkuiTabsItem__selected.vkuiTabsItem__modeAccent,
.vkuiTabsItem__hover.vkuiTabsItem__modeAccent {
background: #2a3742;
box-shadow: none;
}
.Slider-module__fillWriteBarIcon--W6ijG.Slider-module__fill--Gxkxh,
.Slider-module__fillTrackBuffered--DzV0t.Slider-module__fill--Gxkxh,
.Slider-module__fillTransparent--BvWiT.Slider-module__fill--Gxkxh,
.videoplayer_slider ._filled,
.button_green,
.button_green:hover,
.Token__Container,
.Token__Input:hover,
.ads_schedule_cell_checked,
.ads_schedule_preset_selected,
.ads_schedule_preset_selected:hover,
.ads_schedule_cell_hovered,
.ads_schedule_cell:hover,
.vkitSlider__sliderSizeL--U9ls4 .vkitSlider__fill--9yU7d,
.im-navigation--label-in,
.media_voting_option_bar,
.ReactionChip--outgoing.ReactionChip--active {
background: #5785ba;
}
.vkuiSwitch__pseudo:before {
background: #cdd6f4;
}
.UnreadCounter.UnreadCounter--muted {
background: #5785baa3;
color: #1b222a;
}
.redesign_web .RecommendedPlaylist,
.vkuiImageBase__border,
.vkuiImageBase,
.OwnerContentTabAudiosPlaylistsItem__cover,
.OwnerContentTabAudiosItem__cover,
#group_section_menu .module_body .ui_gallery .ui_gallery_item .groups_menu_item:hover,
.RoundedGroupItem-module__rootShadow--__QR_,
#group_section_menu.redesigned-group-menu .module_body .ui_gallery .ui_gallery_item .groups_menu_item .groups_menu_item_image::after,
.videoplayer_end_screen,
.gedit_block_footer,
.HeaderSectionSwitcher,
.PredictionWidget__body,
.videoplayer_media_provider,
.UserRecommendationItem-module__main--d2bFU,
.Office__content .paginated_table > table,
.Office__content .ads_unions_table,
.Office__content .paginated_table > table > tbody > tr.empty_row td,
.Office__content .ads_unions_table > tbody > tr.empty_row td,
tr.ads_union_empty_row td.ads_union_empty_cell,
.Office__content .paginated_table > table > tbody > tr,
.Office__content .ads_unions_table > tbody > tr,
.ads_unions_list .table_footer td,
.pt_search_container,
.wall_module .wall_reply_text,
.PredictionWidget {
background: none;
border: none;
}
.vkitLeftMenuItem__counter--syb1p,
.vkuiCounter__host,
.Token__Container,
.UsersStack__counter,
.im-navigation--label-in {
color: #1b222a;
}
[dir] body .im-action_media:before,
[dir] body .im-action_mute:before,
.audio_row__more_actions .audio_row__more_action,
.audio_numeric .audio_row .audio_row__counter,
.audio_pl_snippet2 .audio_pl_snippet__stats,
div.img_title,
.article_dark .article,
.Breadcrumbs,
.Breadcrumb__link,
.Breadcrumb--bold,
.GoalsFilterList__item--selected,
.RequirementsModal__listItem,
.HeaderSectionSwitcherDropdown__itemTitleSpan,
#exchange_tasks_list_table .title,
#exchange_campaigns_list_table .title,
.SideOfficeMenu__link,
.SectionSwitcher__button,
.SectionSwitcherDropdown,
.HeaderSectionSwitcher__button,
.HeaderSectionSwitcherDropdown__listItemLink,
.PlatformChooser__title,
.Office__content .ads_edit_value_header,
.PredictionWidget__headerValue,
.PredictionWidget__headerTitle,
.PredictionItem__value,
.PredictionItem__title,
.PredictionWidget__bodyHeaderTitle,
.PredictionWidget__footer,
.PredictionItem__helper,
.ads_edit_targeting_group_hider_title,
.Suggestion__ItemName,
.ads_edit_tt_text,
.Office__content .paginated_table > table > tbody > tr.empty_row td,
.Office__content .ads_unions_table > tbody > tr.empty_row td,
.ads_stat_date_range:active,
.ads_stat_date_range_pressed,
.HeaderBudget__link,
#ads_unions_content .table_label,
tr.ads_union_empty_row td.ads_union_empty_cell,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_live .groups_edit_cover_wrap_live_previews .groups_edit_cover_wrap_live_upload.processing .groups_edit_cover_wrap_live_upload_preview .groups_edit_cover_wrap_live_upload_processing_text,
.post_from_tt_row.active,
.videoplayer_settings_menu_sublist_item,
.BudgetStats__td--money,
.Office__content .ui_table .ui_table_cell_empty,
.ads_union_promoted_post_stat_headline_item,
.HeaderSectionSwitcher__dropdownIcon,
.audio_edit_label,
.audio_edit_input.chk,
.article_ed__caredit .article_ed__caredit_header,
.vkitgetColorClass__colorIconContrast--3EgJQ,
.videoplayer_context_menu ._item,
.PredictionWidget--theme-inline .PredictionWidget__item .PredictionItem__title,
#pv_more_acts_tt .pv_more_act_item {
color: #cdd6f4;
}
.top_audio_player .top_audio_player_title,
.article_theme[theme=dark] .article > h3 {
color: #5785ba;
}
.ProfileIndicatorBadge__badgeLastSeen,
body .reply_author_label {
color: #222c37;
}
.tt_black .tt_text {
background: #2a3742;
color: #cdd6f4;
}
.vkuiSeparator--mode-primary,
.vkuiTooltipBase__arrow {
color: transparent;
}
.videoplayer_settings_menu_sublist_divider {
background: transparent;
}
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_main_wrap,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_live .groups_edit_cover_wrap_live_previews .groups_edit_cover_wrap_live_upload.disabled .groups_edit_cover_wrap_live_upload_placeholder_disabled,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_live .groups_edit_cover_wrap_live_previews .groups_edit_cover_wrap_live_upload .groups_edit_cover_wrap_live_upload_placeholder_enabled,
.TemplatesDropDown__container,
.VideoRestriction__boxWrap,
.tt_w.tt_black,
.flat_button:active,
.flat_button.active,
.button_blue button:active,
.button_blue button.active,
.medadd_c_linkbtn .flat_button.active,
.medadd_inline_editable,
.medadd_inline_editable:hover,
.page_media_link_url.medadd_inline_editable,
.EditorCanvas-module__roundedCanvas--xh8XZ,
.ok_msg,
.feedback_row_wrap.unread:not(.feedback_row_touched),
.wddi,
.wddi_over,
.videoplayer,
.videoplayer_slider ._loaded,
.videoplayer_slider ._bars_wrap,
.videoplayer_settings_menu_list,
.videoplayer_settings_menu_sublist,
.videoplayer_settings_menu_list_item:hover,
.videoplayer_settings_menu_sublist_item:hover,
.videoplayer_settings_menu_list_item.active:hover,
.videoplayer_settings_menu_sublist_item.active:hover,
.index_user_row,
.index_page .page_block,
.VkIdForm__input,
.SitesExamplesGalleryCard,
.groups_edit_event_log_page .groups_edit_event_log_items_wrap .groups_edit_event_log_item_main,
.DatePicker,
.DatePicker .groups_edit_datepicker,
#groups_menu_items .groups_edit_menu_items .groups_edit_menu_item .groups_edit_menu_item_header .groups_edit_menu_item_preview.preview .groups_edit_menu_item_preview_img,
.PhotoItem,
.thumbed_link--group-snippet,
.nim-dialog.nim-dialog_classic.nim-dialog_unread-out .nim-dialog--inner-text,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog:hover,
.nim-dialog:not(.nim-dialog_deleted):hover + .nim-dialog,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog.nim-dialog_hovered,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_hovered + .nim-dialog,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog.nim-dialog_classic.nim-dialog_unread,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_unread.nim-dialog_classic + .nim-dialog,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_hovered + .im-search-results-head,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_unread.nim-dialog_classic + .im-search-results-head,
.nim-dialog:not(.nim-dialog_deleted):hover + .im-search-results-head,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_selected + .nim-dialog,
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_selected + .im-search-results-head,
.im-page_classic.im-page .im-mess:not(.im-mess_fwd).im-mess_unread:not(.im-mess_selected):not(.im-mess_light),
.im-page_classic.im-page .im-mess:not(.im-mess_fwd).im-mess_unread.im-mess_selected,
.im-page_classic.im-page .im-mess:not(.im-mess_fwd).im-mess_unread.im-mess_light,
.im-page_classic.im-page .im-mess-stack--mess li:last-of-type,
.stories_groups_block_stories_wrap .stories_groups_block_stories_row,
.cal_table,
.cal_table .today,
.cal_table .today:not(.sel),
.cal_table .next_month_day,
.cal_table .prev_month_day,
.cal_table .day.sel,
.cal_table .day:hover:not(.inactive_day),
.ConvoList__item--separator::before,
.MusicAuthor_block__content .wGnjLCZ_kHG1SsM_,
.tdd_control,
.MediaViewer__footer,
.ads-story_dummy,
.Office .EditableLabel__textarea,
.EditableLabel:hover .EditableLabel__text,
.Token__Container,
.Token__Container.Token--type-2 .Token__Closer,
.Token__Container.Token--type-2:hover .Token__Closer,
.Token__Input:hover,
.Suggestion__Item,
.Suggestions,
.Table__FiltersPanel .Table__SearchTermInput,
.Office #ad_preview_top,
.Office #ad_preview_top.promoted_post .ads_ad_box,
.Office #ad_preview_top .ads_ad_box.story,
.VideoCard__postponePublishInfo,
.VideoCardControls-module__controls--OLuow,
.VideoCardBadge-module__durationBadge--AjdSt.VideoCardBadge-module__durationBadge--AjdSt,
.VideoCardViewedDuration-module__viewedDuration--fPxO4,
.MenuList__item,
.PlaylistPanel__item,
.PlaylistPanel__itemAction,
.PortalNavigation:hover,
.PortalNavigation--expanded,
.PortalNavigationDropdown.PortalNavigationDropdown,
.VideoRecomsItem__duration,
.VideoRecomsItem__thumb_wrap,
.mv_info,
#mv_box._has_recomms:not(._hide_recomms):not(._has_time_codes):not(._has_goods) .mv_info_narrow_column,
.videoplayer_context_menu,
.videoplayer_context_menu ._item,
.VideoCard__thumbWrapper,
.VideoSearchInput.ui_search_new .ui_search_input_block,
.VideoCard .VideoCard__actions,
.VideoCard__label,
.VideoCardMenu,
.VideoCardMenu__item,
.VibeRecomsPlaylist,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_main_edit .groups_edit_cover_wrap_main_edit_img,
.groups_cover_box .groups_edit_cover_wrap .groups_edit_cover_wrap_live .groups_edit_cover_wrap_live_previews .groups_edit_cover_wrap_live_upload .groups_edit_cover_wrap_live_upload_preview img,
.groups_cover_box .groups_edit_cover_wrap .page_cover_menu .page_cover_action.delete,
.groups_cover_box .groups_edit_cover_wrap .page_cover_menu .page_cover_action,
.groups_cover_box .groups_edit_cover_wrap .page_cover_menu .page_cover_action.upload,
.groups_cover_box .groups_edit_cover_wrap--redesign .groups_edit_cover_hidden_area span,
.editable_thumbs .thumb_wrap .draggable_thumb,
.pt_search_container input.text,
.HeaderProfile__DropdownUser:hover,
.HeaderProfile__DropdownRow:hover,
.ads_warning,
.ads_edit_easy_promote_box.checkout_enabled.box_no_title,
.ads_edit_easy_promote_box.checkout_enabled .ads_edit_easy_promote_box__image_pay,
.vkitLeftMenuItem__item--qlG6N.vkitLeftMenuItem__item--qlG6N,
.im-group-online-box .box_body,
.StepAsideInfo__asideInfo--o6ycN,
.VideoPreview__videoDuration--4OljO,
.audio_pl_snippet2 .audio_shuffle_all_button:hover,
.oXPVlZtlcjoi6d8e,
.Qz12flm1ckhwWMRi,
.AudioLyricsPlayer__player--xVDMn,
.AudioLyricsLine__line--OHlKB,
.audio_page_save_as_playlist .audio_page_save_as_playlist_icon_wrapper,
.NarrativeSnippet,
.vkitContentBadge__root--i6wr7,
.MarketServiceCreatePhotos__photo--dlloZ,
.market_row_controls,
.audio-msg-track--transcriptToggle,
.im_msg_audiomsg .audio-msg-track:not(.audio-msg-player),
.vkuiCalendar,
.vkuiCalendarDay__inner,
.TemplatesDropDown__item,
.video_upload__thumb_chooser_wrap .video_tc_item,
.video_tc_item_selected .video_tc_item_check,
.video_tc_item_selected .ThumbChooser__itemCheck,
.app_widget_list_icon .app_widget_image,
.vkitAttachmentLabel__label--yiFj8.vkitAttachmentLabel__label--yiFj8,
.ExclusivePlaylist,
.ExclusivePlaylist__cover,
.vkitGroup__group--f8Opf.vkitGroup__groupModeCard--jNpCl.vkitGroup__groupModeCard--jNpCl,
.group_info_rows_redesign .group_info_row.onboarding_placeholder .line_value:hover,
.my_current_info:hover,
.no_current_info:hover,
.NewCropControls__buttons--1xajS,
.feedback_rphoto_img,
.VideoPrimaryAttachment__thumbWrapper,
.AudioPlaylistSnippet__cover,
.AudioPlaylistSnippet__covers,
.CategoryMenuDropdown__list--5FB4F,
.vkitProductPreview__wrapperActive--xGFBg,