-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCampbell.css
More file actions
1270 lines (1270 loc) · 57.1 KB
/
Campbell.css
File metadata and controls
1270 lines (1270 loc) · 57.1 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
/**
* @name Campbell_theme
* @version 0.0.2
* @description cats punch
* @author Apx_
*/
@import"https://codedotspectra.github.io/themes/core/settings-icons.css";
@import"https://codedotspectra.github.io/themes/core/hljs.css";
@import"https://fonts.googleapis.com/css2?family=Kosugi Maru";
@import"https://codedotspectra.github.io/themes/core/custom-font.css";
:root{
--mainColor: rgb(141, 141, 141);
--gradientColor01: rgb(0, 178, 233);
--gradientColor02: rgb(247, 247, 247);
--backgroundColor01: rgb(39, 40, 41);
--backgroundColor02: #1a1a1a;
--background-secondary:#1A1A1AFF;
--mentioned:#FACD3DFF;
--mentionedColor:#9c41d8cc;
--backgroundCode: #1e273177;
--backgroundName: rgba(0, 0, 0, .2);
--rs-small-spacing: 2px;
--rs-medium-spacing: 3px;
--rs-large-spacing: 4px;
--rs-small-width: 2px;
--rs-medium-width: 3px;
--rs-large-width: 4px;
--rs-width: 2px;
--rs-avatar-shape: 50%;
--rs-online-color: #43b581;
--rs-idle-color: #faa61a;
--rs-dnd-color: #f04747;
--rs-offline-color: #636b75;
--rs-streaming-color: #643da7;
--rs-invisible-color: #747f8d;
--rs-phone-visible: block;
--rs-phone-color: var(--rs-online-color);
--customFont: 'Purista','Kosugi Maru';
}
#app-mount .applicationStore-2nk7Lo,#app-mount .bg-1QIAus,#app-mount .chat-2ZfjoI,#app-mount .container-1NXEtd,#app-mount .container-2cd8Mz,#app-mount .container-7Unqij,#app-mount .container-ZMc96U.themed-Hp1KC_,#app-mount .contentRegion-3HkfJJ,#app-mount .contentRegionScroller-2_GT_N,#app-mount .emptyPreview-1SMLD4,#app-mount .header-2EadGG,#app-mount .inviteToolbar-2k2nqz,#app-mount .keyboardShortcutsModal-2CRmCm,#app-mount .layer-86YKbF,#app-mount .members-3WRCEx,#app-mount .members-3WRCEx>div,#app-mount .modalTitle-2skSKy,#app-mount .nowPlayingColumn-1eCBCN,#app-mount .panels-3wFtMD,#app-mount .privateChannels-oVe7HL,#app-mount .scroller-1TOeMq,#app-mount .scroller-29cQFV,#app-mount .scroller-2XLwLg,#app-mount .scroller-3X7KbA,#app-mount .scroller-WSmht3,#app-mount .scroller-hE2gWq,#app-mount .sidebar-1tnWFu,#app-mount .sidebarRegionScroller-FXiQOh,#app-mount .stageSection-3mAD8V,#app-mount .standardSidebarView-E9Pc3j,#app-mount .threadSidebar-1o3BTy,#app-mount .tile-2TcwiO,#app-mount .videoWrapper-3rtb_V,#app-mount .wrapper-1_HaEi,#app-mount .wrapper-1gVUIN{
background:var(--backgroundColor02)!important
}
#app-mount .container-S9SaVf{
background-color:var(--backgroundColor01)!important
}
#app-mount .emptyIconFriends-2LNxTX,#app-mount .emptyIconGuilds-2NNSTU,#app-mount .emptyIconStreamerMode-3P4I-V,#app-mount .emptyStateImage-2qGUMK,#app-mount .icon-1fWS75,#app-mount .image-20MDYu,#app-mount .image-35kDIs,#app-mount .image-t6rLT3{
mix-blend-mode:soft-light
}
#app-mount .wrapper-2vIMkT{
background-color:var(--backgroundColor01)!important
}
#app-mount .bd-button:not(.bd-button-danger),#app-mount .lookFilled-yCfaCM.colorBrand-21Le_q.disabled,#app-mount .lookFilled-yCfaCM.colorBrand-I6CyqQ,#app-mount .lookFilled-yCfaCM.colorGreen-3y-Z79,#app-mount .lookFilled-yCfaCM.colorGreen-3y-Z79:disabled,#app-mount .lookFilled-yCfaCM.colorGrey-2iAG-B,#app-mount .lookFilled-yCfaCM.colorGrey-2iAG-B.disabled,#app-mount .lookFilled-yCfaCM.colorPrimary-1arORx,#app-mount .lookFilled-yCfaCM.colorPrimary-1arORx.disabled,#app-mount .lookInverted-2mDUMi.colorBrand-21Le_q,#app-mount .lookInverted-2mDUMi.colorBrand-21Le_q.disabled{
background-color:var(--mainColor)!important;
-webkit-transition:box-shadow .2s ease;
-ms-transition:box-shadow .2s ease;
-o-transition:box-shadow .2s ease;
-moz-transition:box-shadow .2s ease;
transition:box-shadow .2s ease;
color:#fff!important
}
#app-mount .bd-button:not(.bd-button-danger):hover,#app-mount .lookFilled-yCfaCM.colorBrand-21Le_q:hover,#app-mount .lookFilled-yCfaCM.colorGreen-3y-Z79:hover,#app-mount .lookFilled-yCfaCM.colorGrey-2iAG-B:hover,#app-mount .lookFilled-yCfaCM.colorPrimary-1arORx:hover,#app-mount .lookInverted-2mDUMi.colorBrand-21Le_q:hover{
background-color:var(--mainColor);
-webkit-box-shadow:inset 0 0 0 10000px rgba(255,255,255,.2);
-ms-box-shadow:inset 0 0 0 10000px rgba(255,255,255,.2);
-moz-box-shadow:inset 0 0 0 10000px rgba(255,255,255,.2);
-o-box-shadow:inset 0 0 0 10000px rgba(255,255,255,.2);
box-shadow:inset 0 0 0 10000px rgba(255,255,255,.2)
}
#app-mount .lookLink-15mFoz.colorLink-1Md3RZ{
color:var(--mainColor)
}
#app-mount .closeButton-PCZcma,#app-mount .lookOutlined-3yKVGo.colorBrand-21Le_q{
color:var(--mainColor)!important;
border-color:var(--mainColor)!important
}
#app-mount .closeButton-PCZcma:hover{
background-color:var(--mainColor)
}
#app-mount .keybindShortcut-3zF1P9 span{
border:1px solid rgba(0,0,0,.2)!important;
color:#fff!important;
background-color:var(--mainColor)!important;
box-shadow:none!important
}
#app-mount .colorable-3rVGna.primaryDark-2UJt1G{
background-color:var(--backgroundColor01)!important
}
#app-mount .button-12Fmur.enabled-9OeuTA:hover{
background-color:var(--backgroundColor01)!important
}
#app-mount .button-3bklZh:hover{
background-color:var(--backgroundColor02)!important
}
#app-mount .modeSelected-3DmyhH .content-1gYQeQ,#app-mount .modeSelected-3DmyhH:hover .content-1gYQeQ,#app-mount .wrapper-NhbLHG:hover .content-1gYQeQ{
background-color:var(--backgroundColor01)
}
#app-mount .content-1gYQeQ{
position:relative;
overflow:hidden
}
#app-mount .content-1gYQeQ::after{
content:"";
position:absolute;
left:0;
bottom:0;
height:2px;
width:100%;
background-color:var(--gradientColor01);
background-image:linear-gradient(-45deg,var(--gradientColor01),var(--gradientColor02))!important;
-webkit-transition:transform .2s ease;
-ms-transition:transform .2s ease;
-o-transition:transform .2s ease;
-moz-transition:transform .2s ease;
transition:transform .2s ease;
-webkit-transform:translateX(-100%);
-ms-transform:translateX(-100%);
-moz-transform:translateX(-100%);
-o-transform:translateX(-100%);
transform:translateX(-100%)
}
#app-mount .modeSelected-3DmyhH .content-1gYQeQ::after,#app-mount .wrapper-NhbLHG:hover .content-1gYQeQ::after{
-webkit-transform:translateX(0);
-ms-transform:translateX(0);
-moz-transform:translateX(0);
-o-transform:translateX(0);
transform:translateX(0)
}
#app-mount .wrapper-2fEmwW{
color:rgba(255,255,255,.5)
}
#app-mount .wrapper-2fEmwW .users-2JoyGL{
background-color:var(--backgroundColor01)
}
#app-mount .wrapper-2fEmwW .total-1c5KCN{
background-color:var(--backgroundColor01)!important
}
#app-mount .wrapper-2fEmwW .total-1c5KCN:after{
border-right-color:var(--backgroundColor01)!important
}
#app-mount .unread-36eUEm{
height:8px;
width:8px;
border-radius:4px;
left:4px;
-webkit-transition:box-shadow .2s ease;
-ms-transition:box-shadow .2s ease;
-o-transition:box-shadow .2s ease;
-moz-transition:box-shadow .2s ease;
transition:box-shadow .2s ease;
background-color:#ffffff00;
z-index:10;
position:absolute
}
#app-mount .unread-36eUEm:after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-color:var(--mainColor);
border-radius:100%;
z-index:-2;
animation:pulse 2s infinite;
will-change:transform
}
#app-mount .unread-36eUEm:hover:after{
animation:none
}
@keyframes pulse{
0%{
transform:scale(1);
opacity:1
}
100%{
transform:scale(2);
opacity:0
}
}
#app-mount .newMessagesBar-1hF-9G{
background-color:var(--mainColor)
}
#app-mount .jumpToPresentBar-1cEnH0{
background-color:var(--backgroundColor01);
box-shadow:inset 0 0 0 100px rgba(0,0,0,.15)
}
#bd-editor-panel{
border-radius:8px;
overflow:hidden
}
#bd-editor-controls{
background-color:var(--backgroundColor01);
border-radius:8px 8px 0 0
}
.monaco-editor,.monaco-editor .inputarea.ime-input{
color:rgba(255,255,255,.09)!important
}
.monaco-editor,.monaco-editor .inputarea.ime-input,.monaco-editor-background{
background-color:rgba(0,0,0,.09)!important
}
.monaco-editor .margin{
background-color:rgba(0,0,0,.15)!important
}
#bd-editor-controls button:hover{
background-color:var(--backgroundColor02)!important
}
.controls-section .checkbox-inner{
width:20px;
height:20px
}
.controls-section .checkbox-label{
line-height:20px
}
.checkbox-1ycfTw .checkboxInner-1aRh1d .checkboxElement-uwAa9F:checked+span{
background-color:var(--mainColor);
border-color:var(--mainColor)!important
}
.controls-section .checkbox-inner .checkbox:checked+span::after{
left:5px;
top:1px
}
.checkbox-1ycfTw .checkboxInner-1aRh1d span{
background-color:#f54748;
border-color:#f54748!important
}
.checkbox-1ycfTw .checkboxInner-1aRh1d span::after{
content:"×";
position:absolute;
left:-2px;
top:-2px;
width:20px;
height:20px;
font-size:20px;
font-weight:700;
text-align:center
}
#app-mount .channelTextArea-1FufC0,#app-mount .circleIconButton-1VxDrg,#app-mount .circleIconButton-3lUBQk,#app-mount .expandedFolderBackground-1kSAf6:not(.collapsed-uGXEbi),#app-mount .inner-2pOSmK,#app-mount .replyBar-1oi75v,#app-mount .scrollableContainer-15eg7h,#app-mount .searchBar-3TnChZ .searchBarComponent-3N7dCG,#app-mount .searchBar-zdmu7v,#app-mount .threadSuggestionBar-3ExSyc{
background:var(--backgroundColor01)!important
}
#app-mount .divider-2rZFJK:not(.isUnread-3Lojb-){
border-color:var(--backgroundColor01)!important
}
#app-mount .content-3spvdd{
background:var(--backgroundColor01)!important
}
#app-mount .attachment-1PZZB2,#app-mount .autocomplete-3NRXG8,#app-mount .bar-AokMp3,#app-mount .bumpBox-1Pp4td,#app-mount .folder-1hbNCn,#app-mount .role-23oyrw,#app-mount .role-23oyrw:hover,#app-mount .selected-3B2w1z,#app-mount .selected-3B2w1z:hover,#app-mount .wrapper-1HIH0j,#app-mount .wrapperAudio-1Bzv_Z{
background:var(--backgroundColor01)!important;
border:none!important
}
#app-mount .selected-3H3-RC{
background-color:var(--backgroundColor02)!important
}
#app-mount .embedFull-1HGV2S{
background:var(--backgroundColor01)!important
}
#app-mount .anchor-1MIwyf,#app-mount .executedCommand-14-SNW .commandName-1KhvGm,#app-mount .markup-eYLPri a{
color:var(--gradientColor01)!important
}
#app-mount .lookLink-15mFoz.colorBrand-I6CyqQ{
color:var(--mainColor)!important
}
#app-mount .buffer-3eVqKK,#app-mount .buffer-3eVqKK:after,#app-mount .buffer-3eVqKK:before,#app-mount .mediaBarWrapper-33h1oY,#app-mount .mediaBarWrapper-33h1oY:after,#app-mount .mediaBarWrapper-33h1oY:before{
background-color:var(--backgroundColor01)!important
}
#app-mount .mediaBarGrabber-FvJKJg,#app-mount .mediaBarProgress-38I317,#app-mount .mediaBarProgress-38I317:after,#app-mount .mediaBarProgress-38I317:before{
background-color:var(--mainColor)!important
}
#app-mount .side-2ur1Qk .themed-2-lozF.selected-g-kMVV.item-3XjbnG,#app-mount .topPill-3DJJNV .themed-2-lozF.selected-g-kMVV.item-3XjbnG{
background-color:var(--mainColor)!important
}
#app-mount .side-2ur1Qk .themed-2-lozF.item-3XjbnG:hover:not(.disabled-1nofHP),#app-mount .topPill-3DJJNV .themed-2-lozF.item-3XjbnG:hover:not(.disabled-1nofHP){
background-color:var(--backgroundColor01)!important
}
#app-mount .actionButton-3-B2x-{
background-color:var(--backgroundColor02)!important
}
#app-mount .peopleListItem-u6dGxF{
border:none!important
}
#app-mount .peopleListItem-u6dGxF.active-2UF8Zh,#app-mount .peopleListItem-u6dGxF:hover{
background-color:var(--backgroundColor01)!important
}
#app-mount .peopleListItem-u6dGxF.active-2UF8Zh .actionButton-3-B2x-,#app-mount .peopleListItem-u6dGxF:hover .actionButton-3-B2x-{
background-color:var(--backgroundColor01)!important
}
#app-mount .akaBadge-3i7V3p{
background-color:var(--mainColor);
color:#fff!important
}
#app-mount .container-1oAagU{
background-color:var(--backgroundColor02)!important
}
#app-mount .container-1oAagU .scroller-hE2gWq{
border:none!important;
margin-left:0!important
}
#app-mount .divider-q3P9HC{
display:none
}
#app-mount .emptyCard-KDifrB,#app-mount .wrapper-2RrXDg{
background-color:var(--backgroundColor01)!important;
border:none!important
}
#app-mount .emptyCard-KDifrB .inset-SbsSFp,#app-mount .emptyCard-KDifrB .section-3G9aLW,#app-mount .wrapper-2RrXDg .inset-SbsSFp,#app-mount .wrapper-2RrXDg .section-3G9aLW{
background-color:var(--backgroundColor02)!important;
box-shadow:0 4px 5px -2px rgba(0,0,0,.3)
}
#app-mount .detailsBlock-24pLFz{
background-color:var(--backgroundColor01)!important
}
#app-mount .feature-2IUcBI{
background-color:var(--backgroundColor01)!important
}
#app-mount .pageWrapper-2PwDoS{
background-color:var(--backgroundColor02)!important
}
#app-mount .card-2TuZPZ,#app-mount .iconMask-2fMR98{
background-color:var(--backgroundColor01)!important
}
#app-mount .search-25t1e9 .searchBox-pyIJJj .input-2g-os5{
background-color:#fff!important;
color:#000!important
}
#app-mount .folder-241Joy{
background-color:transparent!important
}
#app-mount .expandedFolderBackground-1kSAf6{
background-color:var(--backgroundColor01)!important
}
#app-mount .circleIconButton-1VxDrg{
color:var(--mainColor)!important;
background-color:var(--backgroundColor01)!important
}
#app-mount .actionIcon-2sw4Sl,#app-mount .addButtonIcon-3rJeaD,#app-mount .arrow-2HswgU,#app-mount .attachButtonPlus-3IYelE,#app-mount .button-12Fmur svg,#app-mount .button-2BMPJJ,#app-mount .buttonWrapper-3YFQGJ svg,#app-mount .channelNameIcon-2d0YcP,#app-mount .colorDefault-CDqZdO .checkbox-hADx5o,#app-mount .colorDefault-CDqZdO .radioSelection-1UHp0b,#app-mount .colorDefault-CDqZdO .subtext-2GlkbE,#app-mount .colorLink-2apWfY,#app-mount .connectedAccountOpenIcon-1yfBsb,#app-mount .container-7Unqij svg,#app-mount .flowerStar-2tNFCR path,#app-mount .icon-1WVg4I,#app-mount .icon-1zidb7,#app-mount .icon-2W8DHg,#app-mount .icon-2xnN2Y,#app-mount .icon-3CDcPB,#app-mount .icon-3N9zCW,#app-mount .icon-E4cW1l,#app-mount .iconContainer-1-SsTR,#app-mount .linkButtonIcon-7rsZcu,#app-mount .option-2KkUJO.selected-rZcOL- .plusIcon-2V7coV,#app-mount .overlayToggleIconOn-3_-nGm .fill-MYciTJ,#app-mount .resultsGroup-1BPR25 .searchLearnMore-7__o_n a,#app-mount .topSectionNormal-2-vo2m .additionalActionsIcon-3Cy8UU{
color:var(--mainColor)!important;
fill:var(--mainColor)!important
}
#app-mount .colorDefault-CDqZdO.focused-3qFvc8 .checkbox-hADx5o,#app-mount .colorDefault-CDqZdO.focused-3qFvc8 .radioSelection-1UHp0b,#app-mount .colorDefault-CDqZdO.focused-3qFvc8 .subtext-2GlkbE,#app-mount .colorMuted-20987_{
color:#fff!important;
fill:#fff!important
}
#app-mount .botTagRegular-kpctgU,#app-mount .wanderingCubesItem-3Us-UG{
background-color:var(--mainColor)!important
}
#app-mount .childContainer-U_a6Yh{
top:1px
}
#app-mount .check-K_srvn{
background:var(--mainColor)!important;
-webkit-mask-image:url(/assets/1c0a5d38bdeaaad433b68cf6092ed510.svg)
}
#app-mount .wordmarkWindows-2dq6rw{
color:var(--mainColor)!important
}
#app-mount .wordmarkWindows-2dq6rw::after{
position:absolute;
content:"NOCTURNAL";
top:7px;
height:10px;
width:100px;
margin-left:-10px;
color:var(--mainColor);
background-position:center;
background-size:contain;
background-repeat:no-repeat
}
#app-mount .container-2o3qEW{
background:0 0!important;
flex-direction:unset
}
#app-mount .members-3WRCEx,#app-mount .members-3WRCEx>div{
background-color:var(--backgroundColor02)!important
}
#app-mount .clickable-28SzVr.container-1oeRFJ .activity-2EQDZv{
color:rgba(255,255,255,.5)!important
}
#app-mount .clickable-28SzVr.container-1oeRFJ:hover .activity-2EQDZv{
color:rgba(255,255,255,.9)!important
}
#app-mount .clickable-28SzVr.container-1oeRFJ:hover .layout-1qmrhw,#app-mount .selected-1-Z6gm .layout-1qmrhw{
background-color:var(--backgroundColor01)!important
}
#app-mount .selected-1-Z6gm .activity-2EQDZv{
color:rgba(255,255,255,.9)!important
}
#app-mount .layout-1qmrhw{
position:relative;
overflow:hidden
}
#app-mount .layout-1qmrhw::after{
content:"";
position:absolute;
left:0;
bottom:0;
height:2px;
width:100%;
background-color:var(--gradientColor01);
background-image:linear-gradient(-45deg,var(--gradientColor01),var(--gradientColor02))!important;
-webkit-transition:transform .2s ease;
-ms-transition:transform .2s ease;
-o-transition:transform .2s ease;
-moz-transition:transform .2s ease;
transition:transform .2s ease;
-webkit-transform:translateX(100%);
-ms-transform:translateX(100%);
-moz-transform:translateX(100%);
-o-transform:translateX(100%);
transform:translateX(100%)
}
#app-mount .clickable-28SzVr.container-1oeRFJ:hover .layout-1qmrhw::after,#app-mount .selected-1-Z6gm .layout-1qmrhw::after{
-webkit-transform:translateX(0);
-ms-transform:translateX(0);
-moz-transform:translateX(0);
-o-transform:translateX(0);
transform:translateX(0)
}
#app-mount .channelHeader-DFRX8q,#app-mount .container-2ebMPP,#app-mount .header-145e10 .button-1_oXub,#app-mount .header-145e10 .tabBar-1qdMr5 .tab-TRrPC8.active-1grPyy,#app-mount .jumpButton-1V_1FA,#app-mount .jumpButton-1ZwI_j,#app-mount .messagesPopoutWrap-3zryHW{
background-color:var(--backgroundColor01)!important
}
#app-mount .messagesPopout-eVzQcI{
padding:8px 8px 2px 8px!important
}
#app-mount .footer-5ji8u1,#app-mount .header-1w9Q93,#app-mount .messageContainer-3VTXBC,#app-mount .messageGroupWrapper-1jf_7C,#app-mount .messages-23can0,#app-mount .tertiary-1e-lAP,#app-mount .tutorial-Nb3Zz5{
background-color:var(--backgroundColor01)!important;
-webkit-box-shadow:inset 0 0 0 100000px rgba(0,0,0,.3);
-ms-box-shadow:inset 0 0 0 100000px rgba(0,0,0,.3);
-moz-box-shadow:inset 0 0 0 100000px rgba(0,0,0,.3);
-o-box-shadow:inset 0 0 0 100000px rgba(0,0,0,.3);
box-shadow:inset 0 0 0 100000px rgba(0,0,0,.3)
}
#app-mount .header-145e10 .button-1_oXub{
width:32px;
height:32px
}
#app-mount .messageGroupWrapper-1jf_7C{
border:none!important
}
#app-mount .base-21yXnu.pro-3GwLMX[style*="rgb(59, 165, 92)"]{
color:var(--mainColor)!important
}
#app-mount .mentioned-Tre-dv:before{
background-color:var(--gradientColor01);
width:4px;
border-radius:8px 0 0 8px
}
#app-mount .mentioned-Tre-dv{
background-color:transparent!important;
border-radius:0 8px 8px 0;
position:relative
}
#app-mount .mentioned-Tre-dv::after{
position:absolute;
content:"";
width:100%;
height:100%;
background-color:var(--gradientColor01);
left:0;
top:0;
bottom:0;
right:0;
z-index:-1;
opacity:.15;
border-radius:8px
}
#app-mount .message-2CShn3.mentioned-Tre-dv.selected-2LX7Jy,#app-mount .mouse-mode.full-motion .mentioned-Tre-dv:hover{
background-color:var(--mainColor)
}
#app-mount .wrapper-1ZcZW-{
background-color:var(--gradientColor02);
color:#fff;
text-shadow:0 1px rgba(0,0,0,.7)
}
#app-mount .colorDefault-CDqZdO:active:not(.hideInteraction-2jPGL_),#app-mount .menu-1QACrS{
background-color:var(--backgroundColor01)
}
#app-mount .colorDefault-CDqZdO.focused-3qFvc8{
background-color:var(--mainColor)!important
}
#app-mount .colorDefault-CDqZdO.focused-3qFvc8 .icon-E4cW1l{
color:#fff!important
}
#app-mount .colorDanger-3n-KnP .icon-E4cW1l{
color:#ed4245!important
}
#app-mount .colorDanger-3n-KnP.focused-3qFvc8{
background-color:#ed4245!important
}
#app-mount .colorBrand-3cPPsm .icon-E4cW1l,#app-mount .colorBrand-3cPPsm .label-2gNW3x{
color:#3a9942!important
}
#app-mount .colorBrand-3cPPsm.focused-3qFvc8{
background-color:#3a9942!important
}
#app-mount .colorBrand-3cPPsm.focused-3qFvc8 .icon-E4cW1l,#app-mount .colorBrand-3cPPsm.focused-3qFvc8 .label-2gNW3x{
color:#fff!important
}
#app-mount .scroller-1bVxF5{
padding:6px 8px!important
}
#app-mount .scroller-1bVxF5 .separator-1So4YB{
display:none
}
#app-mount .clickable-vvKY2q .header-3OsQeK:hover,#app-mount .selected-1GtAC5 .header-3OsQeK{
background-color:var(--backgroundColor02)!important
}
#app-mount .bf-toolbar::before{
background:var(--backgroundColor01)!important
}
#app-mount .bf-toolbar .format:hover{
background-color:var(--backgroundColor02)!important
}
#app-mount .autocomplete-3l_oCd{
background-color:var(--backgroundColor01)!important
}
#app-mount .autocomplete-3l_oCd .selected-3H3-RC{
background-color:var(--backgroundColor02)!important
}
#app-mount .contentWrapper-3vHNP2{
background-color:var(--backgroundColor01)!important
}
#app-mount .contentWrapper-3vHNP2 .inspector-DFKXwB,#app-mount .contentWrapper-3vHNP2 .wrapper-1NNaWG{
background-color:var(--backgroundColor01)!important
}
#app-mount .contentWrapper-3vHNP2 .container-1SX9VC,#app-mount .contentWrapper-3vHNP2 .emojiItem-277VFM.emojiItemSelected-2Lg50V,#app-mount .contentWrapper-3vHNP2 .navButtonActive-1EqC5l{
background-color:var(--backgroundColor02)!important
}
#app-mount .contentWrapper-3vHNP2 .wrapper-22rqw6{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 1000px rgba(0,0,0,.3)
}
#app-mount .categoryFadeBlurple-1HuV1x{
background-color:transparent!important
}
#app-mount .focused-q9B2e4:after,#app-mount .result-3OpoO7:hover:after{
box-shadow:inset 0 0 0 2px var(--mainColor),inset 0 0 0 3px #2f3136!important
}
#app-mount .bar-2MWHzg{
background-color:var(--backgroundColor02)
}
#app-mount .noiseCancellationPopout-2-e5Xz{
background-color:var(--backgroundColor02)!important
}
#app-mount .notches-2w7UZJ.black-11MaxJ,#app-mount .notches-2w7UZJ.gray-3wP137{
background-image:linear-gradient(to left,var(--backgroundColor02),var(--backgroundColor02));
-webkit-mask-image:url("data:image/svg+xml;
charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='20' fill='%2336393f'%3E%3Cpath fill-rule='evenodd' d='M0 0h8v20H0V0zm4 2a2 2 0 00-2 2v12a2 2 0 104 0V4a2 2 0 00-2-2z'/%3E%3C/svg%3E");
mask-image:url("data:image/svg+xml;
charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='20' fill='%2336393f'%3E%3Cpath fill-rule='evenodd' d='M0 0h8v20H0V0zm4 2a2 2 0 00-2 2v12a2 2 0 104 0V4a2 2 0 00-2-2z'/%3E%3C/svg%3E")
}
#app-mount .container-20TyK0[style="background-color: rgba(32, 34, 37, 0.9);
"],#app-mount .content-38N-4k .message-G6O-Wv,#app-mount .friendSelected-3cwmD7,#app-mount .guildSection-2Zyzy8,#app-mount .progress-1S-TDF,#app-mount .tag-15zcD_{
background-color:var(--backgroundColor01)!important
}
#app-mount .quickswitcher-pKcM9U,#app-mount .scroller-2qwVWY,#app-mount .uploadModalIn-2w48Zf .uploadDropModal-13Kd20 .bgScale-1iWuPF{
background:var(--mainColor)
}
#app-mount .input-3r5zZY,#app-mount .quickSelectPopoutOption-2E2UmS:hover{
background-color:var(--backgroundColor02);
color:#fff
}
#app-mount .attachedBars-2BCP3l,#app-mount .quickSelectPopout-2F0PXw,#app-mount .resultFocused-3aIoYe,#app-mount .root-1e2tfc{
background-color:var(--backgroundColor01)
}
#app-mount .root-g14mjS{
background:var(--backgroundColor02)!important;
box-shadow:none!important
}
#app-mount .root-g14mjS .backButton-2Ps-B8,#app-mount .root-g14mjS .footerTitle-3Bslxi,#app-mount .root-g14mjS .lookBlank-21BCro,#app-mount .root-g14mjS .title-1_TkpU,#app-mount .root-g14mjS .title-2Giw-4,#app-mount .root-g14mjS .title-OdeD-o{
color:#fff!important
}
#app-mount .root-g14mjS .close-1mLglB,#app-mount .root-g14mjS .colorHeaderSecondary-g5teka{
color:#ccc!important
}
#app-mount .root-g14mjS .footer-31IekZ{
background:var(--backgroundColor02)!important;
box-shadow:none!important
}
#app-mount .root-g14mjS .container-x8Y1ix{
border:none!important;
background-color:var(--backgroundColor01)
}
#app-mount .root-g14mjS .container-x8Y1ix .colorStandard-21JIj7{
color:#fff!important
}
#app-mount .root-g14mjS .uploadIcon-2wV7s_ svg circle{
fill:var(--mainColor)!important
}
#app-mount .input-2g-os5{
background-color:var(--backgroundColor02)!important;
color:#fff!important;
border-color:transparent!important
}
#app-mount .input-2g-os5:focus,#app-mount .input-2g-os5:hover{
border-color:var(--mainColor)!important
}
#app-mount .emojiSection-3QtaWO,#app-mount .tooltipPrimary-3qLMbS{
background-color:var(--mainColor)!important
}
#app-mount .tooltipPointer-3L49xb{
border-top-color:var(--mainColor)!important
}
#app-mount .uploadModal-2ie9O_{
background-color:var(--backgroundColor02)!important
}
#app-mount .footer-VCsJQY{
background-color:var(--backgroundColor02)!important;
box-shadow:inset 0 0 0 1000px rgba(0,0,0,.3)
}
#app-mount .checkbox-f1HnKB{
border-color:rgba(255,255,255,.15)
}
#app-mount .checkbox-f1HnKB[style*="rgb(79, 84, 92)"]{
border-color:var(--mainColor)!important;
background-color:var(--mainColor)!important
}
#app-mount .checkbox-f1HnKB[style*="rgb(79, 84, 92)"] svg path{
fill:#fff!important
}
.bd-modal-wrapper .bd-modal-inner{
background-color:var(--backgroundColor02)!important
}
.bd-toast{
background:var(--backgroundColor01);
border:none!important
}
.bd-toast.toast-success{
background:var(--mainColor);
background-repeat:no-repeat;
background-position:3px 50%
}
#app-mount .reaction-2A2y9y{
background-color:var(--backgroundColor01)!important
}
#app-mount .reaction-2A2y9y.reactionMe-3I9gFK{
background-color:var(--mainColor)!important;
border-color:rgba(255,255,255,.5)!important
}
#app-mount .root-g14mjS .reactionSelected-1aMb2K,#app-mount .root-g14mjS .reactors-1VXca7{
background-color:var(--backgroundColor01)!important
}
#app-mount .root-g14mjS .scroller-2GkvCq{
background-color:var(--backgroundColor02)!important
}
#app-mount .emojiPicker-6YCk8a,#app-mount .inspector-DFKXwB,#app-mount .wrapper-1NNaWG{
background-color:var(--backgroundColor01)!important
}
#app-mount .container-1SX9VC,#app-mount .emojiItem-277VFM.emojiItemSelected-2Lg50V,#app-mount .wrapper-22rqw6{
background-color:var(--backgroundColor02)!important
}
#app-mount .categoryItemDefaultCategorySelected-2YeRUu,#app-mount .categoryItemDefaultCategorySelected-2YeRUu:hover{
background-color:var(--mainColor)!important
}
#app-mount .children-3xh0VB:after,#app-mount .content-1jQy2l:before,#app-mount .divider-3LgWDL,#app-mount .form-3gdLxP:before,#app-mount .guildSeparator-33mFX6,#app-mount .libraryHeader-2loraV:before,#app-mount .roleRow-3LoHQ6:before,#app-mount .roleRow-3LoHQ6:last-child:after,#app-mount .tabBody-2dgbAs:before{
display:none!important
}
#app-mount .bannedUser-26qsXF,#app-mount .header-2o-2hj,#app-mount .header-3OsQeK,#app-mount .inviteSettingsInviteRow-1rZeIM,#app-mount .member-1q7VfX,#app-mount .searchBar-3TnChZ{
box-shadow:none!important
}
#app-mount .container-1zzFcN{
border:none!important
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar,#app-mount .infoScroller-1QMpon::-webkit-scrollbar,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar,#app-mount .listScroller-2FcOQF::-webkit-scrollbar,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar,#app-mount .rolesList-3uZoaa::-webkit-scrollbar,#app-mount .scroller-1ox3I2::-webkit-scrollbar,#app-mount .scroller-2qwVWY::-webkit-scrollbar,#app-mount .scroller-kQBbkU::-webkit-scrollbar,#app-mount .scroller::-webkit-scrollbar,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar,#app-mount .templatesList-uohY49::-webkit-scrollbar{
width:5px;
display:none;
background:0 0!important
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-track,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-track,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-track,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-track,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-track,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-track,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-track,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-track,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-track,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-track,#app-mount .scroller-2qwVWY::-webkit-scrollbar-track,#app-mount .scroller-kQBbkU::-webkit-scrollbar-track,#app-mount .scroller::-webkit-scrollbar-track,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-track,#app-mount .templatesList-uohY49::-webkit-scrollbar-track{
margin:0
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-track-piece,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-track-piece,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-track-piece,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-track-piece,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-track-piece,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-track-piece,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-track-piece,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-track-piece,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-track-piece,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-track-piece,#app-mount .scroller-2qwVWY::-webkit-scrollbar-track-piece,#app-mount .scroller-kQBbkU::-webkit-scrollbar-track-piece,#app-mount .scroller::-webkit-scrollbar-track-piece,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-track-piece,#app-mount .templatesList-uohY49::-webkit-scrollbar-track-piece{
background:0 0!important;
border-color:transparent!important
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-thumb,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-thumb,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-thumb,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-thumb,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-thumb,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-thumb,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-thumb,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-thumb,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-thumb,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-thumb,#app-mount .scroller-1ox3I2::-webkit-scrollbar-thumb,#app-mount .scroller-2qwVWY::-webkit-scrollbar-thumb,#app-mount .scroller-kQBbkU::-webkit-scrollbar-thumb,#app-mount .scroller::-webkit-scrollbar-thumb,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-thumb,#app-mount .templatesList-uohY49::-webkit-scrollbar-thumb{
background-color:var(--backgroundColor01);
border-radius:0;
border-radius:50px;
border:none
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-thumb:hover,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-thumb:hover,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-thumb:hover,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-thumb:hover,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-thumb:hover,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-thumb:hover,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-thumb:hover,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-thumb:hover,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-thumb:hover,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-thumb:hover,#app-mount .scroller-1ox3I2::-webkit-scrollbar-thumb:hover,#app-mount .scroller-2qwVWY::-webkit-scrollbar-thumb:hover,#app-mount .scroller-kQBbkU::-webkit-scrollbar-thumb:hover,#app-mount .scroller::-webkit-scrollbar-thumb:hover,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-thumb:hover,#app-mount .templatesList-uohY49::-webkit-scrollbar-thumb:hover{
background-color:var(--backgroundColor01)
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-thumb:active,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-thumb:active,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-thumb:active,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-thumb:active,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-thumb:active,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-thumb:active,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-thumb:active,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-thumb:active,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-thumb:active,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-thumb:active,#app-mount .scroller-1ox3I2::-webkit-scrollbar-thumb:active,#app-mount .scroller-2qwVWY::-webkit-scrollbar-thumb:active,#app-mount .scroller-kQBbkU::-webkit-scrollbar-thumb:active,#app-mount .scroller::-webkit-scrollbar-thumb:active,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-thumb:active,#app-mount .templatesList-uohY49::-webkit-scrollbar-thumb:active{
background-color:var(--backgroundColor01)
}
#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-button,#app-mount .autocompleteScroller-3L6kmy::-webkit-scrollbar-corner,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-button,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt::-webkit-scrollbar-corner,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-button,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG::-webkit-scrollbar-corner,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-button,#app-mount .infoScroller-1QMpon::-webkit-scrollbar-corner,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-button,#app-mount .keybindGroup-39HP2U::-webkit-scrollbar-corner,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-button,#app-mount .listScroller-2FcOQF::-webkit-scrollbar-corner,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-button,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG::-webkit-scrollbar-corner,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-button,#app-mount .messagesPopout-eVzQcI::-webkit-scrollbar-corner,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-button,#app-mount .regionSelectModalOptions-2TWQOB::-webkit-scrollbar-corner,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-button,#app-mount .rolesList-3uZoaa::-webkit-scrollbar-corner,#app-mount .scroller-1ox3I2::-webkit-scrollbar-button,#app-mount .scroller-1ox3I2::-webkit-scrollbar-corner,#app-mount .scroller-2qwVWY::-webkit-scrollbar-button,#app-mount .scroller-2qwVWY::-webkit-scrollbar-corner,#app-mount .scroller-kQBbkU::-webkit-scrollbar-button,#app-mount .scroller-kQBbkU::-webkit-scrollbar-corner,#app-mount .scroller::-webkit-scrollbar-button,#app-mount .scroller::-webkit-scrollbar-corner,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-button,#app-mount .scrollerBase-_bVAAt::-webkit-scrollbar-corner,#app-mount .templatesList-uohY49::-webkit-scrollbar-button,#app-mount .templatesList-uohY49::-webkit-scrollbar-corner{
display:none!important
}
#app-mount .autocompleteScroller-3L6kmy:hover,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt:hover,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG:hover,#app-mount .infoScroller-1QMpon:hover,#app-mount .keybindGroup-39HP2U:hover,#app-mount .listScroller-2FcOQF:hover,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG:hover,#app-mount .messagesPopout-eVzQcI:hover,#app-mount .regionSelectModalOptions-2TWQOB:hover,#app-mount .rolesList-3uZoaa:hover,#app-mount .scroller-1ox3I2:hover,#app-mount .scroller-2qwVWY:hover,#app-mount .scroller-kQBbkU:hover,#app-mount .scroller:hover,#app-mount .scrollerBase-_bVAAt:hover,#app-mount .templatesList-uohY49:hover{
overflow:overlay!important
}
#app-mount .autocompleteScroller-3L6kmy:hover::-webkit-scrollbar,#app-mount .container-2cd8Mz .scrollerBase-_bVAAt:hover::-webkit-scrollbar,#app-mount .contentWrapper-3vHNP2 .scroller-2FKFPG:hover::-webkit-scrollbar,#app-mount .infoScroller-1QMpon:hover::-webkit-scrollbar,#app-mount .keybindGroup-39HP2U:hover::-webkit-scrollbar,#app-mount .listScroller-2FcOQF:hover::-webkit-scrollbar,#app-mount .listWrapper-2nHLP8 .scroller-2FKFPG:hover::-webkit-scrollbar,#app-mount .messagesPopout-eVzQcI:hover::-webkit-scrollbar,#app-mount .regionSelectModalOptions-2TWQOB:hover::-webkit-scrollbar,#app-mount .rolesList-3uZoaa:hover::-webkit-scrollbar,#app-mount .scroller-1ox3I2:hover::-webkit-scrollbar,#app-mount .scroller-2qwVWY:hover::-webkit-scrollbar,#app-mount .scroller-kQBbkU:hover::-webkit-scrollbar,#app-mount .scroller:hover::-webkit-scrollbar,#app-mount .scrollerBase-_bVAAt:hover::-webkit-scrollbar,#app-mount .templatesList-uohY49:hover::-webkit-scrollbar{
display:block
}
#app-mount .wrapper-15CKyy,#app-mount .wrapper-22ayhK{
background-color:var(--backgroundColor02)!important
}
#app-mount .attachment-16cAbS,#app-mount .avatar-l9Txm5,#app-mount .blob-1uHjdp{
background-color:rgba(255,255,255,.6)!important
}
.container-2McqkF{
background-color:var(--backgroundColor01)!important
}
.option-2KkUJO:after{
display:none
}
.focused-2FU0YH,.option-2KkUJO.selected-rZcOL-,.searchAnswer-23w-CH,.searchFilter-2UfsDk{
background-color:var(--backgroundColor02)!important
}
.button-cfOvv-,.channelName-3w2Y3c,.searchHeader-1r_ZSh,.searchResultsWrap-5RVOkx{
background-color:var(--backgroundColor02)!important
}
.searchResult-O9NDji,.tab-2Jo-cu.selected-2LAck8{
background-color:var(--backgroundColor01)!important
}
#app-mount .avatarUploaderInner-Oiob_P{
border-color:var(--backgroundColor01)!important
}
#app-mount .profileBannerPreview-3_l0Wd{
background-color:var(--backgroundColor01)!important
}
#app-mount .accountProfileCard-lbN7n-{
background-color:var(--backgroundColor01)!important
}
#app-mount .accountProfileCard-lbN7n- .fieldList-in8WkP{
background-color:var(--backgroundColor02)!important;
padding:15px
}
#app-mount .accountProfileCard-lbN7n- .avatar-3mTjvZ{
border-color:var(--backgroundColor01)!important
}
#app-mount .contentColumn-1C7as6,#app-mount .customColumn-2n-oKU{
max-width:100%
}
#app-mount .sidebarRegion-1VBisG{
justify-content:flex-start;
flex:0 0
}
#app-mount .accountList-305sx3,#app-mount .cardPrimary-3qRT__,#app-mount .cardPrimaryEditable-2mz_3i,#app-mount .cardPrimaryOutline-1ofwVz,#app-mount .codeRedemptionRedirect-3SBiCp,#app-mount .connection-107AGH,#app-mount .pageActions-1crTQL,#app-mount .paymentPane-ut5qKZ,#app-mount .userSettingsVoice-1_dzjw .previewOverlay-2reuWf{
background-color:var(--backgroundColor01)!important;
border:none!important
}
#app-mount .background-3d_SjE,#app-mount .paginator-1eqD2g,#app-mount .payment-2bOh4k,#app-mount .phoneField-3NAPDv,#app-mount .phoneField-3NAPDv .inputField-1iYysB,#app-mount .popoutList-10IFAa,#app-mount .previewMessage-2uxBrA{
background-color:var(--backgroundColor01)!important
}
#app-mount .bottomDivider-ZmTm-j,#app-mount .paymentHeader-2o7Phd{
border:none!important
}
#app-mount .accountBtn-1YkMgV .accountBtnInner-3XK70s,#app-mount .connectionHeader-2rV1ze,#app-mount .expandedInfo-1W31i3,#app-mount .integration-1f5IUi{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 10000px rgba(0,0,0,.3)
}
#app-mount .fieldList-in8WkP{
background-color:var(--backgroundColor02)!important;
box-shadow:0 4px 5px -2px rgba(0,0,0,.3)
}
#app-mount .popoutListInput-1w4TxY .inner-2pOSmK{
border-radius:4px;
background-color:var(--backgroundColor02)!important;
padding:4px
}
#app-mount .popoutList-10IFAa{
box-shadow:0 0 5px 5px rgba(0,0,0,.3)
}
#app-mount .selectableItem-3-fmiM:hover{
background-color:var(--backgroundColor02)!important
}
#app-mount .side-2ur1Qk .themed-2-lozF.selected-g-kMVV.item-3XjbnG:hover{
background-color:var(--mainColor)!important
}
#app-mount .side-2ur1Qk .item-3XjbnG[style*="rgb(237, 66, 69)"]:hover,#app-mount .side-2ur1Qk .themed-2-lozF.item-3XjbnG[style*="rgb(237, 66, 69)"]:hover:not(.disabled-1nofHP){
background:#ed4245!important;
color:#fff!important
}
#app-mount .wrapper-SdcMKg{
border-color:var(--mainColor)!important
}
#app-mount .option-1QI4c9:hover,#app-mount .selected-18Wszc.option-1QI4c9{
background-color:var(--mainColor)!important
}
#app-mount .option-1QI4c9{
background-color:var(--backgroundColor01)!important
}
#app-mount .disabled-35mc5w{
color:var(--backgroundColor01)!important
}
#app-mount .disabled-35mc5w:hover{
color:#ed4245!important
}
#app-mount .radioBar-3w9XY-{
background-color:var(--backgroundColor01)!important
}
#app-mount .radioBar-3w9XY- svg path{
fill:var(--mainColor);
opacity:.35
}
#app-mount .radioBar-3w9XY- svg circle{
fill:var(--mainColor)
}
#app-mount .radioBar-3w9XY-[style*="#ed4245"] svg path{
fill:#ed4245;
opacity:.35
}
#app-mount .radioBar-3w9XY-[style*="#ed4245"] svg circle{
fill:#ed4245
}
#app-mount .radioBar-3w9XY-[style*="#cb8615"] svg path{
fill:#cb8615;
opacity:.35
}
#app-mount .radioBar-3w9XY-[style*="#cb8615"] svg circle{
fill:#cb8615
}
#app-mount .radioBar-3w9XY-[style*="#3ba55c"] svg path{
fill:#3ba55c;
opacity:.35
}
#app-mount .radioBar-3w9XY-[style*="#3ba55c"] svg circle{
fill:#3ba55c
}
#app-mount .container-2nx-BQ[style*=rgb]{
background-color:var(--mainColor)!important
}
#app-mount .container-2nx-BQ[style*="rgb(114, 118, 125)"]{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 100px rgba(255,255,255,.05)
}
#app-mount .bd-switch{
background-color:transparent!important
}
#app-mount .bd-switch .bd-switch-body{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 100px rgba(255,255,255,.05)
}
#app-mount .bd-switch input:checked+.bd-switch-body{
--switch-color:base.$accent;
background-color:var(--mainColor)!important
}
#app-mount .slider-1NC-Gf .bar-1Bhnl9{
background:var(--backgroundColor01);
box-shadow:inset 0 0 0 100px rgba(255,255,255,.01)
}
#app-mount .slider-1NC-Gf .barFill-2Bh7CX{
background:var(--mainColor)
}
#app-mount .slider-1NC-Gf .defaultValue-19SZ-q .markValue-2U_-UG{
color:#fff!important;
letter-spacing:1px
}
#app-mount .bd-search-wrapper,#app-mount .gameNameInput-3TuPuA:focus,#app-mount .gameNameInput-3TuPuA:hover,#app-mount .lookFilled-1GseHa.select-1Ia3hD,#app-mount .popout-1KHNAq{
border:none!important;
background-color:var(--backgroundColor02)!important
}
#app-mount .addGamePopout-3yePJc,#app-mount .option-2eIyOn.focused-ODgjnC,#app-mount .option-2eIyOn:focus,#app-mount .option-2eIyOn:hover,#app-mount .option-2eIyOn[aria-selected=true]{
background-color:var(--backgroundColor01)!important
}
#app-mount .addGamePopout-3yePJc .select-1YfRS9,#app-mount .option-2eIyOn.focused-ODgjnC .select-1YfRS9,#app-mount .option-2eIyOn:focus .select-1YfRS9,#app-mount .option-2eIyOn:hover .select-1YfRS9,#app-mount .option-2eIyOn[aria-selected=true] .select-1YfRS9{
margin-bottom:10px
}
#app-mount .addGamePopout-3yePJc .css-3vaxre-menu,#app-mount .option-2eIyOn.focused-ODgjnC .css-3vaxre-menu,#app-mount .option-2eIyOn:focus .css-3vaxre-menu,#app-mount .option-2eIyOn:hover .css-3vaxre-menu,#app-mount .option-2eIyOn[aria-selected=true] .css-3vaxre-menu{
background-color:var(--backgroundColor02)!important;
border:none!important
}
#app-mount .addGamePopout-3yePJc .css-3vaxre-menu .css-rzbxvl-option,#app-mount .option-2eIyOn.focused-ODgjnC .css-3vaxre-menu .css-rzbxvl-option,#app-mount .option-2eIyOn:focus .css-3vaxre-menu .css-rzbxvl-option,#app-mount .option-2eIyOn:hover .css-3vaxre-menu .css-rzbxvl-option,#app-mount .option-2eIyOn[aria-selected=true] .css-3vaxre-menu .css-rzbxvl-option{
background-color:var(--backgroundColor02)!important;
box-shadow:inset 0 0 0 100px rgba(0,0,0,.15)
}
#app-mount .css-3vaxre-menu{
background-color:var(--backgroundColor01)!important;
border:1px solid rgba(0,0,0,.5)!important;
border-top:none!important
}
#app-mount .css-1ba14n5-option{
background-color:var(--backgroundColor02)!important;
box-shadow:inset 0 0 0 100px rgba(0,0,0,.15)
}
#app-mount .row-1Tg75B{
box-shadow:none!important
}
#app-mount .bd-select .bd-select-options{
background:var(--backgroundColor01)!important;
box-shadow:none!important
}
#app-mount .bd-select .bd-select-option.selected{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 100px rgba(0,0,0,.15)!important
}
#app-mount .wrapper-3AZUiP{
background-color:var(--backgroundColor01)!important
}
#app-mount .game-3x3aDt{
box-shadow:none!important
}
#app-mount .default-1Tkeeg{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 100px rgba(0,0,0,.3);
border:none!important
}
#app-mount .card-2ART2V:before{
background-color:var(--backgroundColor01)!important;
border:none!important
}
#app-mount .bd-addon-list .bd-addon-card{
background:var(--backgroundColor01)!important
}
#app-mount .bd-addon-list .bd-addon-header{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 100px rgba(0,0,0,.3)
}
#app-mount .analyticsCard-2fnrVG,#app-mount .cardFolder-3H4uH4,#app-mount .checklistContainer-12xGp5,#app-mount .container-2w0lh0,#app-mount .container-3EtAkD,#app-mount .container-3ssFyj,#app-mount .descriptionBox-SKGNgB,#app-mount .developerPortalCtaWrapper-2PniQs,#app-mount .editButton-2SLR4j,#app-mount .enableContainer-1J91Aq,#app-mount .featureCard-3XHbjy,#app-mount .memberRow-1FhJgR:hover,#app-mount .previewContainer-21fFBz,#app-mount .roleRow-3LoHQ6:hover:not(.roleRowDisableHover-2TXfy-),#app-mount .settingCard-xZSDjS,#app-mount .settingsFormItem-25zW3t,#app-mount .tierBody-x9kBBp,#app-mount .tierInProgress-1vFUnw,#app-mount .upsellContainer-L9xv7w,#app-mount .upsellFooter-ZYsio_{
background-color:var(--backgroundColor01)!important
}
#app-mount .focused-qp-W9B,#app-mount .header-JUTO-g,#app-mount .item-1BCeuB:hover,#app-mount .scroller-3_YDR2,#app-mount .selected-22ukbQ,#app-mount .titleContainer-3fPic2,#app-mount .welcomeChannel-_Q4qAA{
background-color:var(--backgroundColor02)!important
}
#app-mount .settingsFormFieldWrapper-U99c9i{
background-color:var(--backgroundColor02)!important;
border:none!important
}
#app-mount .auditLog-1NVAY0{
border:none!important
}
#app-mount .headerClickable-zGQJz3,#app-mount .headerDefault-1wrJcN{
background-color:var(--backgroundColor01)!important;
border:none!important
}
#app-mount .top-K_jibn .brand-3g5E0C.item-3XjbnG:active,#app-mount .top-K_jibn .brand-3g5E0C.item-3XjbnG:hover,#app-mount .top-K_jibn .brand-3g5E0C.selected-g-kMVV.item-3XjbnG{
border-bottom-color:var(--mainColor)!important
}
#app-mount .featureIcon-3p1TC_,#app-mount .icon-2DGsye,#app-mount .primary-38Hs-h:hover:not(.disabled-184-il),#app-mount .secondary-2bzKEX{
background-color:var(--backgroundColor02)!important
}
#app-mount .featureIcon-3p1TC_ svg,#app-mount .icon-2DGsye svg,#app-mount .primary-38Hs-h:hover:not(.disabled-184-il) svg,#app-mount .secondary-2bzKEX svg{
color:var(--mainColor)!important
}
#app-mount .featureIcon-3p1TC_ svg path,#app-mount .icon-2DGsye svg path,#app-mount .primary-38Hs-h:hover:not(.disabled-184-il) svg path,#app-mount .secondary-2bzKEX svg path{
fill:var(--mainColor)!important
}
#app-mount .button-YGmtzG:hover,#app-mount .notice-2olXi7{
background-color:var(--mainColor)!important
}
#app-mount .checklistIcon-D7psvE .checkbox-f1HnKB{
background-color:var(--mainColor)!important;
border:none!important
}
#app-mount .checkbox-f1HnKB[style*="rgb(114, 137, 218)"]{
background-color:var(--mainColor)!important;
border:none!important
}
#app-mount .group-LWHoGI{
border:none!important
}
#app-mount .item-4m-12I{
background-color:var(--backgroundColor01)!important
}
#app-mount .item-4m-12I.deny-1GO6vI.selected-3jieYB{
background-color:#ed4245!important
}
#app-mount .item-4m-12I.allow-1h61-Z.selected-3jieYB{
background-color:#4fdc7b!important
}
#app-mount .tier1-1ttHRY.banner-3Kac2g,#app-mount .wrapper-3nSjSv{
background-image:linear-gradient(8.62deg,var(--gradientColor02),var(--gradientColor01) 75.25%)
}
#app-mount .cardWrapper-CyvwQv{
background-color:var(--backgroundColor01)!important
}
#app-mount .checklistHeader-3liG7E,#app-mount .defaultIndicator-2ndWks,#app-mount .enableContainer-6E-puu,#app-mount .gemIndicatorContainer-PqApbX,#app-mount .header-2Y0-A-,#app-mount .tierHeaderLocked-1a2opw{
background-color:var(--backgroundColor01)!important;
box-shadow:inset 0 0 0 100px rgba(0,0,0,.3)
}
#app-mount .tierLock-1oFMOZ{
color:var(--mainColor)!important
}
#app-mount .background-3xJH_4,#app-mount .gemWithoutLabel-1od40y{
color:var(--backgroundColor01)!important
}
#app-mount .premiumIndicator-22GgcZ{
background-color:var(--mainColor)!important
}
.container-18GwIk{
background-color:var(--backgroundColor01)!important
}
.container-18GwIk .container-2rzKKA{
background-color:var(--backgroundColor02)!important;
border:none!important
}
.container-18GwIk .header-3_zmOb,.container-18GwIk .icon-mJhEWn{
background-color:rgba(0,0,0,.15)
}
.container-18GwIk .checkbox-f1HnKB.checked-1pZh2h{
background-color:var(--mainColor)!important;
border-color:var(--mainColor)!important
}
.chatHeaderBar-2fUORh{
background-color:rgba(0,0,0,.15)
}
#app-mount .divider-1wtgZ3{
display:none
}