-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathmain.css
1916 lines (1596 loc) · 52.5 KB
/
main.css
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
/* . .
8 888888888o. ,o888888o. 8 8888 88 b. 8 8 888888888o. ,8. ,8. ,o888888o. 8 8888 8 8888888888 8 888888888o.
8 8888 `88. . 8888 `88. 8 8888 88 888o. 8 8 8888 `^888. ,888. ,888. . 8888 `88. 8 8888 8 8888 8 8888 `^888.
8 8888 `88 ,8 8888 `8b 8 8888 88 Y88888o. 8 8 8888 `88. .`8888. .`8888. ,8 8888 `8b 8 8888 8 8888 8 8888 `88.
8 8888 ,88 88 8888 `8b 8 8888 88 .`Y888888o. 8 8 8888 `88 ,8.`8888. ,8.`8888. 88 8888 `8b 8 8888 8 8888 8 8888 `88
8 8888. ,88' 88 8888 88 8 8888 88 8o. `Y888888o. 8 8 8888 88 ,8'8.`8888,8^8.`8888. 88 8888 88 8 8888 8 888888888888 8 8888 88
8 888888888P' 88 8888 88 8 8888 88 8`Y8o. `Y88888o8 8 8888 88 ,8' `8.`8888' `8.`8888. 88 8888 88 8 8888 8 8888 8 8888 88
8 8888`8b 88 8888 ,8P 8 8888 88 8 `Y8o. `Y8888 8 8888 ,88 ,8' `8.`88' `8.`8888. 88 8888 ,8P 8 8888 8 8888 8 8888 ,88
8 8888 `8b. `8 8888 ,8P ` 8888 ,8P 8 `Y8o. `Y8 8 8888 ,88',8' `8.`' `8.`8888.`8 8888 ,8P 8 8888 8 8888 8 8888 ,88'
8 8888 `8b. ` 8888 ,88' 8888 ,d8P 8 `Y8o.` 8 8888 ,o88P' ,8' `8 `8.`8888.` 8888 ,88' 8 8888 8 8888 8 8888 ,o88P'
8 8888 `88. `8888888P' `Y88888P' 8 `Yo 8 888888888P' ,8' ` `8.`8888. `8888888P' 8 888888888888 8 888888888888 8 888888888P'
__ _____
/ | / ___ `.
_ __`| | |_/___) |
[ \ [ ]| | .'____.'
\ \/ /_| |_ _ / /_____
\__/|_____|(_)|_______|
████████╗██╗ ██╗███████╗███╗ ███╗███████╗ ██╗ ██╗ █████╗ ██████╗ ███████╗
╚══██╔══╝██║ ██║██╔════╝████╗ ████║██╔════╝ ██║ ██║██╔══██╗██╔══██╗██╔════╝
██║ ███████║█████╗ ██╔████╔██║█████╗ ██║ ██║███████║██████╔╝███████╗
██║ ██╔══██║██╔══╝ ██║╚██╔╝██║██╔══╝ ╚██╗ ██╔╝██╔══██║██╔══██╗╚════██║
██║ ██║ ██║███████╗██║ ╚═╝ ██║███████╗ ╚████╔╝ ██║ ██║██║ ██║███████║
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝
themevarsp
***************************************************************************************/
/* imports */
@import "https://tiredmala.github.io/animcord/animcordmain.css";
@import "https://mwittrien.github.io/BetterDiscordAddons/Themes/_res/SettingsIcons.css";
:root{
--dark-primary: #000000;
--dark-secondary: #050505;
--dark-secondary-alt: #080808;
--dark-bright: #0b0b0b;
--roundmoled-background: #142339;
--popout-activeborders: #1f1f1f;
}
/****************************************************************************************
██████╗██╗ ██╗ █████╗ ████████╗
██╔════╝██║ ██║██╔══██╗╚══██╔══╝
██║ ███████║███████║ ██║
██║ ██╔══██║██╔══██║ ██║
╚██████╗██║ ██║██║ ██║ ██║
╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝
chatsp
*****************************************************************************************/
/* Pin message */
.message-G6O-Wv{
background-color: var(--dark-secondary-alt) !important;
border-radius: 15px;
border:solid var(--popout-activeborders);
}
/* thread popout on channel name hover */
.popout-TdhJ6Z{
background-color: var(--dark-bright);
border-radius: 12px;
border:solid var(--popout-activeborders);
}
/* invite to channel */
.lookOutlined-3sRXeN.colorGreen-29iAKY{
background-color:var(--brand-experiment);
border-radius:13px;
color:rgb(14, 14, 14);
font-weight:bold;
border:none;
}
.modal-atz_3z{
width:140%;
height:150%;
}
.inviteRow-3vmB7i:hover{
border-radius:15px;
margin-right:6px;
transform:scale(1.03);
transition: transform 250ms;
}
/* @everyone and @here warning */
.theme-dark .contentWarningPopout-WKdbDG{
background-color:var(--dark-primary);
border-radius:15px;
border:solid var(--popout-activeborders);
}
/* nsfw chat warning buttons */
.actionRed-gYn8D3{
border-radius:10px;
}
.actionRed-gYn8D3:hover{
box-shadow: rgba(255, 44, 44, 0.3) 0px 5px 15px;
transition:250ms;
}
/* Mentions in chat*/
.wrapper-1ZcZW-{
border-radius:25px;
padding:0px 5px 0px 5px;
}
/* View code files / chat */
.textContainer-36wgKK, .footer-GXWBBp, .modalTextContainer-1FUO2W{
border-radius:10px;
background-color:var(--dark-bright);
}
.footer-GXWBBp{
margin-top:5px;
}
/* Bold urls on hover */
.markup-eYLPri a:hover{
font-weight:bold;
transition:250ms;
}
/* Attachments in chat */
.attachment-1PZZB2, .theme-dark .wrapperAudio-1Bzv_Z{
border-radius: 15px;
background-color:var(--dark-bright);
width:150%;
}
.attachment-1PZZB2:hover, .theme-dark .wrapperAudio-1Bzv_Z:hover{
background-color:var(--dark-secondary);
transition: 250ms;
}
.audioControls-3fmemK{
border-radius: 25px;
}
.filenameLinkWrapper-3Rc6sk, .metadata-1E7Z4i, .metadataName-1KMZtB{
font-size:18px;
text-align: center;
}
.filenameLinkWrapper-3Rc6sk:hover{
font-weight:bold;
transition: font-weight 250ms;
}
/* chat embeds */
.embedFull-1HGV2S{
background-color:var(--dark-secondary-alt);
border-left: 4px solid var(--brand-experiment);
}
.embedFooterText-2Mc7H9{
font-size: 0.85rem;
line-height: 1rem;
font-weight: 500;
}
.embedThumbnail-2nTasl
{
border-radius:13px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}
/* Emoji picker big and small */
.contentWrapper-3vHNP2
{
background-color:var(--dark-secondary);
border-radius: 15px;
border: solid var(--popout-activeborders);
}
.unicodeShortcut-3N8oDe, .wrapper-1NNaWG, .input-2FSSDe, .emojiPicker-6YCk8a
{
background-color:var(--dark-secondary);
}
.list-obNEuP
{
background-color:var(--dark-secondary);
border: solid var(--dark-primary);
}
/* Send image modal chat */
.theme-dark .uploadModal-2ie9O_, .theme-dark .footer-VCsJQY{
background-color:var(--dark-primary);
}
.uploadModal-2ie9O_ .inner-rBP-MS .file-163EuR .icon-HW4tZ-.image-2ssF8k{
width: 40% !important;
height: 40% !important;
margin-left: 150px !important;
border: solid var(--popout-activeborders);
}
/* more upload modal things */
.uploadModal-2ie9O_, .uploadModal-2ie9O_ .footer-VCsJQY{
border-radius:15px;
}
.theme-dark .footer-VCsJQY{
box-shadow: none;
}
.uploadModal-2ie9O_ .inner-rBP-MS .file-163EuR.expandable-2-lrzP .description-2AJi-V{
position: relative;
margin-left: 50%;
transform: translate(-50%);
}
.theme-dark .checkbox-f1HnKB{
background-color:#1a1a1a;
border-radius:25px;
}
.uploadModal-2ie9O_ .footer-VCsJQY.hasSpoilers-33hwf_ .checkboxWrapper-2fDzaA{
background-color:var(--dark-bright);
margin-right:140px;
padding:7px;
border-radius:25px;
}
.uploadModal-2ie9O_ .footer-VCsJQY.hasSpoilers-33hwf_ .checkboxWrapper-2fDzaA:hover{
background-color:var(--dark-secondary);
transition: 250ms ease-in-out;
}
.theme-dark .lookLink-9FtZy-.colorPrimary-3b3xI6{
background-color:#af2626;
margin-right:10px;
border-radius:15px;
}
.theme-dark .lookLink-9FtZy-.colorPrimary-3b3xI6:hover{
box-shadow: rgba(255, 44, 44, .3) 0px 5px 15px;
transition: box-shadow 250ms;
}
/* Code blocks in chat */
.markup-eYLPri code{
border-radius:10px;
background-color:var(--dark-secondary-alt);
}
/* You're viewing older messages */
.jumpToPresentBar-1cEnH0{
background-color: var(--brand-experiment);
border-radius:25px;
margin-bottom:10px;
}
/* Inbox */
.container-2ebMPP, .channelHeader-DFRX8q
{
border-radius:15px;
background-color:var(--dark-secondary);
}
.container-2ebMPP, .tutorial-Nb3Zz5
{
border: solid var(--popout-activeborders);
}
.tutorial-Nb3Zz5, .header-1w9Q93
{
background-color:var(--dark-primary);
}
.messageContainer-3VTXBC{
margin-top:5px;
}
/* Pins */
.messagesPopoutWrap-3zryHW
{
background-color:var(--dark-secondary-alt);
border-radius: 15px;
border: solid var(--popout-activeborders);
}
/* invites in chat */
.wrapper-1HIH0j
{
background-color:var(--dark-secondary-alt);
border: solid var(--popout-activeborders);
border-radius:15px;
}
.lookFilled-1Gx00P.colorGreen-29iAKY
{
background-color:var(--brand-experiment);
box-shadow: rgba(44, 139, 255, .23) 0px 5px 15px;
}
.lookFilled-1Gx00P.colorGreen-29iAKY:hover
{
filter:brightness(80%);
transform: scale(1.035);
transition: 250ms ease-in-out;
}
/* amoledify message search popout */
.theme-dark .container-2McqkF{
border-radius:15px;
background-color:var(--dark-primary);
border: solid var(--popout-activeborders);
}
.searchHeader-1r_ZSh{
background-color: var(--dark-secondary-alt);
}
.theme-dark .option-2KkUJO:after{
background: linear-gradient(90deg,rgba(21, 21, 21, 0),#000 80%);
}
.searchResultsWrap-5RVOkx{
border-radius:20px;
background-color:var(--dark-primary);
margin-right: 10px;
margin-left: 10px;
}
.channelName-3w2Y3c{
background:var(--dark-secondary);
border-radius:7px;
}
/* Chat @ and emoji autocomplete */
.theme-dark .autocomplete-3NRXG8
{
background-color:var(--dark-secondary);
border-radius:15px;
border: solid var(--popout-activeborders);
}
.theme-dark .selected-3H3-RC
{
background-color:var(--background-secondary-alt);
transform: scale(1.015);
transition: 250ms ease-in-out;
}
/* follow this channel modal */
.wrapper-2SplAX{
background-color: var(--dark-secondary-alt);
border: solid var(--popout-activeborders);
}
.theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6:hover
{
background-color:var(--brand-experiment);
}
.clickable-vvKY2q .header-3OsQeK:hover, .selecetd-1GtAC5 .header-3OsQeK{
background-color: #0f10106b;
}
/****************************************************************************************
██╗ ██╗ ██████╗ ███╗ ███╗███████╗
██║ ██║██╔═══██╗████╗ ████║██╔════╝
███████║██║ ██║██╔████╔██║█████╗
██╔══██║██║ ██║██║╚██╔╝██║██╔══╝
██║ ██║╚██████╔╝██║ ╚═╝ ██║███████╗
homesp
****************************************************************************************/
/* home page and DMs stuff */
.theme-dark .container-2cd8Mz
{
border-radius: 20px;
margin-top:10px;
margin-bottom:10px;
margin-right: 10px;
}
/* Home colors */
.topPill-3DJJNV .themed-2-lozF.selected-g-kMVV.item-3XjbnG, .topPill-3DJJNV .themed-2-lozF.selected-g-kMVV.item-3XjbnG:hover{
background-color:var(--brand-experiment);
}
:root .peopleColumn-1wMU14, .privateChannels-oVe7HL, .scroller-1JbKMe, .scroller-WSmht3{
background-color: var(--dark-primary);
}
:root .searchBar-6Kv8R2 .searchBarComponent-32dTOx{
margin-top:5px;
border-radius: 25px;
}
:root .theme-dark .container-2cd8Mz, .container-1a3EgQ, .applicationStore-1pNvnv{
border-radius: 15px;
margin-right: 10px;
margin-top:10px;
margin-bottom:10px;
}
/* friends now playing home */
.wrapper-2RrXDg, .theme-dark .separator-XqIyoz, .theme-dark .inset-3sAvek{
background-color:var(--dark-secondary-alt);
}
.section-2gLsgF{
border-radius:13px;
}
.wrapper-2RrXDg:hover, .peopleListItem-u6dGxF:hover{
transform: scale(1.025);
transition: 250ms ease-in-out;
}
/****************************************************************************************
███████╗███████╗████████╗████████╗██╗███╗ ██╗ ██████╗ ███████╗
██╔════╝██╔════╝╚══██╔══╝╚══██╔══╝██║████╗ ██║██╔════╝ ██╔════╝
███████╗█████╗ ██║ ██║ ██║██╔██╗ ██║██║ ███╗███████╗
╚════██║██╔══╝ ██║ ██║ ██║██║╚██╗██║██║ ██║╚════██║
███████║███████╗ ██║ ██║ ██║██║ ╚████║╚██████╔╝███████║
╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝
settingsp
****************************************************************************************/
/* Server template */
.descriptionBox-1EKQKL{
background-color:var(--dark-secondary-alt);
}
.descriptionBox-1EKQKL:hover{
background-color:var(--dark-bright);
transition: 250ms;
}
.inputMaxLength-3n06SD .inputDefault-3FGxgL, .inputWrapper-1YNMmM .inputDefault-3FGxgL{
background-color: var(--dark-bright);
border-radius:10px;
}
/* Connections */
.connectionOptionsWrapper-1ipqUo{
background-color:var(--dark-bright);
border-radius:10px;
margin-top:10px;
}
.connection-107AGH{
background:transparent;
}
.connectionHeader-2rV1ze{
background:var(--dark-secondary);
border-radius:10px;
}
.connectionHeader-2rV1ze:hover{
background: var(--dark-bright);
transition:background .25s;
}
/* Server boost modal */
.ctaBar-2UsjF2{
background-color:var(--dark-secondary-alt);
border-radius:15px;
}
/* nitro boost modal */
.tierHeader---JJFb{
border-radius: 10px;
}
.theme-dark .perk-2WeBWW{
border-radius:15px;
background:var(--dark-bright);
}
.theme-dark .tierBody-16Chc9{
border-radius:15px;
margin-top:10px;
background:var(--dark-bright);
}
.theme-dark .tierBody-16Chc9:hover{
transform:scale(1.05);
margin-top:15px;
transition:250ms;
}
.theme-dark .tierHeaderLocked-1s2JJz{
border-radius:15px;
background-color:var(--dark-primary);
box-shadow: rgb(101, 102, 103) 0px 0px 2px;
}
.theme-dark .tierHeaderLocked-1s2JJz:hover{
background-color:#FF73FA;
color:#151414;
font-weight:bold;
transform:scale(1.02);
box-shadow: #ff73fa7a 0px 5px 15px;
transition:250ms;
}
.theme-dark .tierLock-3CSxSX{
color:var(--roundmoled-background);
}
.theme-dark .perk-2WeBWW:hover{
background:var(--dark-primary);
border:solid var(--brand-experiment);
transition:background, border 250ms;
}
/* Nitro */
.detailsBlock-FoDTGA{
background-color:var(--dark-bright);
border-radius:15px;
}
.banner-3Kac2g{
border-radius:15px;
}
.theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6{
background-color:var(--brand-experiment);
border-radius:12px;
}
.theme-dark .lookFilled-1Gx00P.colorPrimary-3b3xI6:hover{
box-shadow: rgba(44, 139, 255, .3) 0px 5px 15px;
transition:250ms;
}
.detailsBlock-FoDTGA:hover{
background-color:var(--dark-primary);
border:solid var(--brand-experiment);
transition:all 250ms;
}
/* Voice & video */
.lookOutlined-3sRXeN.colorRed-1TFJan{
background-color:#9f1c1c;
color:white;
}
.lookOutlined-3sRXeN.colorRed-1TFJan:hover{
box-shadow: rgba(192, 12, 12, .3) 0px 5px 15px;
transition:250ms;
}
.cardPrimary-3qRT__, .cardPrimaryEditable-2mz_3i, .theme-dark .userSettingsVoice-1_dzjw .previewOverlay-2reuWf{
background-color:var(--dark-bright);
border-radius:15px;
}
/* red button */
.lookFilled-1Gx00P.colorRed-1TFJan:hover{
box-shadow: rgba(192, 12, 12, .3) 0px 5px 15px;
transition:250ms;
}
/* Settings > Appareance preview */
.preview-rua1rr
{
background-color: var(--dark-primary);
}
/* Settings userpopout preview fix */
.profileBannerPreview-3_l0Wd{
border: solid var(--popout-activeborders);
}
/* Discord's changelog modal */
.theme-dark .root-g14mjS, .theme-dark .footer-31IekZ
{
background-color: var(--dark-secondary);
border-radius:max(0px, min(16px, ((100vw - 4px) - 100%) * 9999)) / 16px;
}
/* hypesquad tab settings */
.membershipDialogHeading-2YNliA, .membershipDialogHouseDescription-2uFjjO, .membershipDialogHouseName-1yc2Ci, .membershipDialogSwitchHouses-2bOt9w, .membershipDialogSwitchHousesAction-O0eVhe:hover{
filter:invert(100%);
}
/* settings */
:root .ebarRegionScroller-FXiQOh
{
background-color: var(--dark-primary);
}
.accountProfileCard-lbN7n-{
background-color: var(--dark-secondary);
border-radius:15px;
}
.fieldList-in8WkP, .background-3d_SjE
{
background-color: var(--dark-secondary-alt);
}
.avatar-3mTjvZ{
border-color: var(--dark-secondary);
background-color: var(--dark-secondary);
}
.background-3d_SjE
{
border: solid var(--popout-activeborders);
}
.item-2idW98
{
background-color: var(--dark-secondary);
border-radius:10px;
}
.item-2idW98:hover
{
transform: scale(1.015);
transition: 250ms ease-in-out;
}
.radioIconForeground-2BMavi{
color: var(--brand-experiment);
}
/* Server boost tab settings */
.guildHeader-3nh5RK, .guildSubscriptionSlots-JPXXvN, .cardWrapper-CyvwQv
{
background-color:var(--dark-secondary);
}
.guild-Hq0WWA
{
border-radius:13px;
}
.card-2gdrYL:hover
{
background-color:var(--dark-secondary-alt);
}
/* Server settings */
/* Overview server settings */
/* needs to be fixed*/
.marginBottom40-fvAlAV{
border-radius:13px;
padding:15px;
background-color:var(--dark-secondary);
margin-bottom:20px !important;
}
.css-3vaxre-menu{
border-radius:12px;
background-color:var(--dark-secondary);
}
.lighten-1KubYe{
opacity:0.7;
}
.css-rzbxvl-option:hover{
border-radius:10px;
background-color:var(--dark-primary);
}
.css-gvi9bl-control, .css-17e1tep-control{
background-color:var(--dark-secondary-alt);
border-radius:10px;
}
.css-gvi9bl-control:hover{
border-radius:10px;
transform:scale(1.025);
background-color:var(--background-tertiary);
transition: .25s ease;
}
.theme-dark .lookOutlined-3sRXeN.colorPrimary-3b3xI6{
background-color:var(--brand-experiment);
border:none;
border-radius:12px;
}
.theme-dark .lookOutlined-3sRXeN.colorPrimary-3b3xI6:hover{
box-shadow: rgba(44, 139, 255, .3) 0px 5px 15px;
transition: .3s;
}
/* Stickers server settings */
.tierHeaderContent-2SPBAA, .theme-dark .tierHeaderUnlocked-1OpOLf, .theme-dark .tierHeaderLocked-30MLlO, .wrapper-24fR1R{
border-radius:15px;
background-color:var(--dark-secondary);
}
.wrapper-24fR1R:hover{
border:solid var(--brand-experiment);
transition:250ms ease-in-out;
}
.lookFilled-1Gx00P.colorBrand-3pXr91{
border-radius:12px;
}
.lookFilled-1Gx00P.colorBrand-3pXr91:hover{
box-shadow: rgba(44, 139, 255, .3) 0px 5px 15px;
}
.theme-dark .tierBody-1d3UiS{
border-radius:15px;
margin-top:10px;
background-color:var(--dark-bright);
}
/* Integrations server settings */
.theme-dark .card-o7rAq-{
border-radius:15px;
}
.theme-dark .card-o7rAq-:hover{
background-color:var(--dark-secondary);
}
/* Roles server settings */
.roleRow-3LoHQ6:hover:not(.roleRowDisableHover-2TXfy-){
border-radius:12px;
}
.theme-dark .colorPickerCustom-1swUKF{
background-color:var(--dark-primary);
width:100%;
}
.previewContainer-1xQAsw{
border-radius:12px;
}
.container-3EtAkD{
border-radius:15px;
background-color:var(--dark-secondary-alt);
border:solid var(--popout-activeborders);
}
.container-3EtAkD:hover{
background-color:var(--brand-experiment) !important;
transition: .25s ease;
}
/****************************************************************************************
██████╗ █████╗ ███████╗███████╗
██╔══██╗██╔══██╗██╔════╝██╔════╝
██████╔╝███████║███████╗█████╗
██╔══██╗██╔══██║╚════██║██╔══╝
██████╔╝██║ ██║███████║███████╗
╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝
basesp
****************************************************************************************/
/* Status picker (updated 07/11/21)*/
.layer-2aCOJ3{
border-radius:15px;
margin-bottom:5px;
}
.status-3TYC5W{
text-align:center;
font-size:15px;
}
.mask-2Me5HY{
transform:scale(1.8) !important;
}
#status-picker .description-3Cwkxk{
display:none;
}
#status-picker-online:hover,
#status-picker-online.focused-3qFvc8{
background-color:#1f95ca;
border-radius:10px;
transition:250ms;
box-shadow: rgba(44, 164, 255, .17) 0px 5px 15px;
}
#status-picker-dnd:hover,
#status-picker-dnd.focused-3qFvc8{
background-color:#ca1f27;
border-radius:10px;
transition:250ms;
box-shadow: rgba(255, 44, 44, .17) 0px 5px 15px;
}
#status-picker-idle:hover,
#status-picker-idle.focused-3qFvc8{
background-color:#c1c12e;
border-radius:10px;
transition:250ms;
box-shadow: rgba(227, 255, 44, .17) 0px 5px 15px;
}
#status-picker-invisible:hover,
#status-picker-invisible.focused-3qFvc8{
background-color:#161616;
border-radius:10px;
transition:250ms;
box-shadow: rgba(91, 91, 91, .17) 0px 5px 15px;
}
#status-picker-custom-status:hover,
#status-picker-custom-status.focused-3qFvc8{
background-color:#2247a2;
border-radius:10px;
transition:250ms;
box-shadow: rgba(44, 79, 255, .17) 0px 5px 15px;
}
/* Set custom status modal */
.lookFilled-1GseHa.select-1Ia3hD, .popout-1KHNAq{
background-color:var(--dark-primary);
border-radius:15px;
}
.popout-1KHNAq{
border-color:transparent;
}
.option-2eIyOn[aria-selected=true]{
background-color:var(--dark-secondary-alt);
margin-top:5px;
margin-left:10px;
margin-right:10px;
border-radius:13px;
}
.button-1zW0-r{
background-color:var(--dark-secondary-alt);
border-radius:17px;
}
.barButtonBase-Sk2mdB
{
margin-top:3px;
}
/* Channel background change */
.modeSelected-3DmyhH .content-1gYQeQ, .modeSelected-3DmyhH:hover .content-1gYQeQ{
background: linear-gradient(90deg, rgb(52, 70, 119) 0%, rgba(60, 105, 172, 0.753) 54%, rgba(0, 191, 255, 0.212) 100%);
transform:scale(1.02);
border-radius:8px;
margin-left:4px;
margin-right:3px;
}
.modeSelected-3DmyhH [d="M14 8C14 7.44772 13.5523 7 13 7H9.76001L10.3657 3.58738C10.4201 3.28107 10.1845 3 9.87344 3H8.88907C8.64664 3 8.43914 3.17391 8.39677 3.41262L7.76001 7H4.18011C3.93722 7 3.72946 7.17456 3.68759 7.41381L3.51259 8.41381C3.45905 8.71977 3.69449 9 4.00511 9H7.41001L6.35001 15H2.77011C2.52722 15 2.31946 15.1746 2.27759 15.4138L2.10259 16.4138C2.04905 16.7198 2.28449 17 2.59511 17H6.00001L5.39427 20.4126C5.3399 20.7189 5.57547 21 5.88657 21H6.87094C7.11337 21 7.32088 20.8261 7.36325 20.5874L8.00001 17H14L13.3943 20.4126C13.3399 20.7189 13.5755 21 13.8866 21H14.8709C15.1134 21 15.3209 20.8261 15.3632 20.5874L16 17H19.5799C19.8228 17 20.0306 16.8254 20.0724 16.5862L20.2474 15.5862C20.301 15.2802 20.0655 15 19.7549 15H16.35L16.6758 13.1558C16.7823 12.5529 16.3186 12 15.7063 12C15.2286 12 14.8199 12.3429 14.7368 12.8133L14.3504 15H8.35045L9.41045 9H13C13.5523 9 14 8.55228 14 8Z"], .modeSelected-3DmyhH [d="M5.88657 21C5.57547 21 5.3399 20.7189 5.39427 20.4126L6.00001 17H2.59511C2.28449 17 2.04905 16.7198 2.10259 16.4138L2.27759 15.4138C2.31946 15.1746 2.52722 15 2.77011 15H6.35001L7.41001 9H4.00511C3.69449 9 3.45905 8.71977 3.51259 8.41381L3.68759 7.41381C3.72946 7.17456 3.93722 7 4.18011 7H7.76001L8.39677 3.41262C8.43914 3.17391 8.64664 3 8.88907 3H9.87344C10.1845 3 10.4201 3.28107 10.3657 3.58738L9.76001 7H15.76L16.3968 3.41262C16.4391 3.17391 16.6466 3 16.8891 3H17.8734C18.1845 3 18.4201 3.28107 18.3657 3.58738L17.76 7H21.1649C21.4755 7 21.711 7.28023 21.6574 7.58619L21.4824 8.58619C21.4406 8.82544 21.2328 9 20.9899 9H17.41L16.35 15H19.7549C20.0655 15 20.301 15.2802 20.2474 15.5862L20.0724 16.5862C20.0306 16.8254 19.8228 17 19.5799 17H16L15.3632 20.5874C15.3209 20.8261 15.1134 21 14.8709 21H13.8866C13.5755 21 13.3399 20.7189 13.3943 20.4126L14 17H8.00001L7.36325 20.5874C7.32088 20.8261 7.11337 21 6.87094 21H5.88657ZM9.41045 9L8.35045 15H14.3504L15.4104 9H9.41045Z"]{
fill:rgb(255, 255, 255) !important;
}
/* Channel list and server banner */
.bannerImage-ubW8K, .animatedContainer-2laTjx{
border-radius:15px;
background-color:rgba(0, 0, 0, 0);
}
/* Unread pill */
.unread-36eUEm{
background-color:var(--brand-experiment);
box-shadow: rgb(44, 139, 255) 0px 5px 15px;
height: 10px;
width: 6px;
}
/* Context menu */
.menu-1QACrS
{
border-radius:13px;
background-color:var(--dark-bright);
}
/* context menu */
#message-actions-edit:hover,
#message-actions-edit.focused-3qFvc8,
#message-edit:hover,
#message-edit.focused-3qFvc8,
#message-actions-pin:hover,
#message-actions-pin.focused-3qFvc8,
#message-pin:hover,
#message-pin.focused-3qFvc8,
#message-add-reaction:hover,
#message-add-reaction.focused-3qFvc8,
#user-context-user-profile:hover,
#user-context-user-profile.focused-3qFvc8,
#user-context-mention:hover,
#user-context-mention.focused-3qFvc8,
#user-context-message-user:hover,
#user-context-message-user.focused-3qFvc8,
#user-context-add-friend:hover,
#user-context-add-friend.focused-3qFvc8,
#channel-context-hide-voice-names:hover,
#channel-context-hide-voice-names.focused-3qFvc8,
#channel-context-mute-channel:hover,
#channel-context-mute-channel.focused-3qFvc8,
#message-copy-image:hover,
#message-copy-image.focused-3qFvc8,
#message-save-image:hover,
#message-save-image.focused-3qFvc8
{
background:#5a79df;
border-radius:7px;
transform:scale(1.02);
margin-right:2px;
font-size:15px;
transition:150ms;
}
#message-actions-reply:hover,
#message-actions-reply.focused-3qFvc8,
#message-reply:hover,
#message-reply.focused-3qFvc8,
#message-actions-mark-unread:hover,
#message-actions-mark-unread.focused-3qFvc8,
#message-mark-unread:hover,
#message-mark-unread.focused-3qFvc8,
#user-context-call:hover,
#user-context-call.focused-3qFvc8,
#user-context-disable-video:hover,
#user-context-disable-video.focused-3qFvc8,
#channel-context-edit-channel:hover,
#channel-context-edit-channel.focused-3qFvc8,
#channel-context-clone-channel:hover,
#channel-context-clone-channel.focused-3qFvc8,
#channel-context-create-voice-channel:hover,
#channel-context-create-voice-channel.focused-3qFvc8,
#channel-context-create-text-channel:hover,
#channel-context-create-text-channel.focused-3qFvc8,
#user-context-close-dm:hover,
#user-context-close-dm.focused-3qFvc8{
background:#77ce45;
color:black;
border-radius:7px;
transform:scale(1.02);
margin-right:2px;
font-size:15px;
transition:150ms;
}
#message-actions-copy-link:hover,
#message-actions-copy-link.focused-3qFvc8,
#message-copy-link:hover,
#message-copy-link.focused-3qFvc8,
#message-actions-tts:hover,
#message-actions-tts.focused-3qFvc8,
#message-tts:hover,
#message-tts.focused-3qFvc8,
#user-context-change-nickname:hover,
#user-context-change-nickname.focused-3qFvc8{
background:#27436d;
border-radius:7px;
transform:scale(1.02);
margin-right:2px;
font-size:15px;
transition:150ms;
}
#message-actions-copy-id:hover,
#message-actions-copy-id.focused-3qFvc8,
#message-copy-id:hover,
#message-copy-id.focused-3qFvc8,
#message-actions-delete:hover,
#message-actions-delete.focused-3qFvc8,
#message-delete:hover,
#message-delete.focused-3qFvc8,
#user-context-voice-mute:hover,
#user-context-voice-mute.focused-3qFvc8,
#user-context-voice-deafen:hover,
#user-context-voice-deafen.focused-3qFvc8,