-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRealDark.theme.css
1408 lines (1229 loc) · 42.9 KB
/
RealDark.theme.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
/**
* @name RealDark
* @author D Mack (dmack6464)
* @version 2.6
* @description A dark/black theme that boasts enhanced usability, readability, customisation and experimental features!
* @source https://github.com/dmack6464/RealDark/
* @website https://discord.gg/pB2SmhC/
*/
/* RealDark began as a mod for another theme back in mid 2018,
since then I made the theme into its' own thing and have been improving and optimising it since. */
:root /* autoconfiguration of discord vars, RadialStatus */ {
/* refer to RealDarkConfiguration.theme.css for referenced variables. */
--TSCompatREADME:"below are technical settings, do not override";
--font-display: var(--font);
--background-secondary:var(--RDbackground-secondary);
--background-primary:var(--RDbackground-primary);
--background-tertiary:var(--RDbackground-tertiary); /* shade colour 0 */
/* Discord variable overrides */
--background-mentioned-hover:var(--background-mentioned);
--channels-default:var(--text);
/*--text-muted:var(--text);*/
--deprecated-card-editable-bg:var(--background-tertiary);
--background-accent:var(--accentColour);
--background-modifier-selected:var(--shade1);
--background-modifier-hover:var(--shade1a);
--background-message-hover:var(--shade2);
--deprecated-quickswitcher-input-background:var(--background-tertiary);
--text-link:var(--links);
--background-floating:var(--shade1a); /* default is shade1a, changed to shadeTransparent for an experiment */
--background-secondary-alt:var(--shade1);
--header-primary:var(--text);
--text-normal:var(--text);
--text-muted:var(--text2);
--interactive-muted:var(--text2);
--header-secondary:var(--text2);
/* custom configuration for RadialStatus 1.0.0 by Gibbu#1211 */
--rs-small-spacing: 0px!important; /* spacing between avatar and status */
--rs-large-spacing: 0px!important; /* spacing between avatar and status for profile popouts & modals/profiles | MUST end in px */
--rs-avatar-shape: var(--icon-rounding)!important; /* defined in ReaLDark Configuration */
}
/* major functionality changing stuff goes near the top */
/* config warning */
.channelTextArea-rNsIhG:before {
display: var(--disableWarning);
color: red;
content: "RealDark requires RealDarkConfiguration(.theme).css, which appears to be missing!!!";
}
html.newBrand, ::-webkit-input-placeholder, body, button, select, div {
--font-family: var(--font)!important;
--font-display:var(--font)!important;
}
/* text selection, text highlight hack */
body, div,
body::selection,
div::selection {
user-select: auto!important;
-webkit-user-select: auto!important;
}
*::selection {
color: orange;
background: var(--background-mentioned);
background-color: var(--background-mentioned);
}
/* custom title bar, text */
.typeWindows-1za-n7,
.bg-h5JY_x {
background-color: var(--titlebar);
}
.wordmark-2L03Wr svg,
.wordmark-2iDDfm svg {
height:0px;
width:0px;
}
.wordmark-2L03Wr:after, .wordmark-2iDDfm:after {
position: static;
content: var(--title);
font-size: 16px;
color:var(--text);
top: 4px;
font-weight: bold;
}
.wordmark-2iDDfm {
text-align:var(--title-align);
opacity: .6;
width: 100%;
}
@keyframes flicker {
0% {
padding-left: 4px;
color: var(--accentColour2);
animation-timing-function: steps(1, end);
}
50% {
padding-right: 4px;
color: var(--links);
animation-timing-function: steps(1, end);
}
100% {}
}
.preview-2nSL_2:after {
display: block;
font-family: var(--secondaryFont);
text-align: center;
content: var(--title);
animation: flicker 0.06s infinite backwards;
}
/* stupid #00e621 colour hack */
@keyframes rainbow {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(360deg);
}
}
span[style="color: rgb(0, 230, 33);"],
button[style*="color: rgb(0, 230, 33);"],
input[style*="color: rgb(0, 230, 33);"],
div[style*="color: rgb(0, 230, 33);"] {
color: #0f0;
animation: rainbow 0.5s infinite linear;
}
/* experimenting with backdrop blur */
.jumpToPresentBar-G1R9s6,
.root-SR8cQa,
.theme-dark .autocomplete-1vrmpx,
/*,.menu-3sdvDG*/
.tooltip-2QfLtc, /* all tooltips */
.newMessagesBar-265mhP, /* channel message area, "xx new messages since xx:xx" */
[class*="messagesPopout"],
[class*="recentMentionsPopout"] [class*="scroller-"] {
backdrop-filter:blur(var(--background-blur));
}
/*.menu-3sdvDG*/
.theme-dark .autocomplete-1vrmpx,
.theme-dark .tooltipPrimary-1d1ph4, /* all tooltips */
.newMessagesBar-265mhP, /* channel message area, "xx new messages since xx:xx" */
[class*="messagesPopout"],
[class*="recentMentionsPopout"] [class*="scroller-"] {
background-color: var(--shadeTransparent);
}
.root-SR8cQa,
[class*="messagesPopoutWrap"],
[class*="recentMentionsPopout"] {
background-color: transparent;
}
.noUserDrag-5Mb43F /* enable people to drag/drop stuff on desktop, creating shortcuts!! */ {
-webkit-user-drag: element;
}
/* fixes for either deprecated or derpy discord items, hopefully i can soon remove */
/* why, discord.. (light theme objects) */
.theme-light .focusLock-Ns3yie * {
background: var(--shade2)!important;
background-color: var(--shade2)!important;
color: var(--text);
}
/* role members temp fix */
.popoutRight-1veHKi {
top: 100px!important;
left: 100px!important;
}
.sparkles-fvfHK0 { /* an active user of my theme found this bug, this image associated made the Guild Settings > Enable Community area unusable, rather than actually fixing the root of the problem, i just remove the symptom... */
display: none;
}
.card-FDVird:before /* user settings > keybinds hover thing */ {
display: none;
}
.scrollableContainer-2NUZem /* channel text area scrollbar shows unnecessarily, this should fix it */ {
overflow-y: auto;
}
/* Discord History Tracker, idk if itll work every time due to the broad nature of dht
(this fix is for if the Add Server button is drawn under or over the left side) */
#dht-ctrl {
margin-left: 75px!important;
width: calc(100% - 75px)!important;
}
.chat-3bRxxu .messagesWrapper-3lZDfY {
z-index: unset;
}
/* ------------ 2.6 stuff, thought it was 2.7 but forgot that the public version was still 2.5 */
[id*="popout"] [class*="userPopout"] {
width: 400px!important;
max-height: 80vh;
overflow-y: scroll;
}
.body-3iLsc4 {
overflow: visible!important;
max-height: 300px;
}
/* additional highlight experiment */
#channels [class*="modeMuted"] svg {
color: var(--textDanger);
}
#channels [class*="modeUnread"] svg {
color: var(--accentColour2);
}
#channels [class*="modeSelected"] /* accidental selected channel highlight found again! */ {
background-color: var(--accentColour);
}
/* anti-rebrand */
[class*="reaction-"] {
background-color: var(--shade1);
}
[class*="reactionMe-"],
[class*="reaction-"]:hover {
background-color: var(--shadeHighlight)!important;
}
/* friend tabs buttons, first 2 selectors are to fix unrelated selections */
#app-mount :not([class*="tabBarContainer-"]) > [class*="tabBar-"] [aria-controls*="-tab"] {
color: #fff;
}
#app-mount :not([class*="tabBarContainer-"]) > [class*="tabBar-"] [aria-controls*="-tab"]:not([class*="selected-"]):hover {
background-color: var(--accentColour2)!important;
}
#app-mount [aria-controls='ONLINE-tab'] {
background-color: var(--accentColour);
}
#app-mount [aria-controls='ALL-tab'] {
order: -1;
}
#app-mount [aria-controls='PENDING-tab'] {
background-color: var(--textWarning);
}
#app-mount [aria-controls='BLOCKED-tab'] {
background-color: var(--textDanger);
}
#app-mount [aria-controls='ADD_FRIEND-tab'],
#app-mount [aria-controls='ALL-tab'] {
background-color: var(--shadeHighlight)!important;
}
/* slider customisation! */
[class*="slider-"] [class*="bar-"] {
background-color: var(--shade2);
}
[class*="slider-"] [class*="barFill-"] {
background-color: var(--shadeHighlight);
}
[class*="slider-"] [class*="grabber-"] {
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
background-color: var(--accentColour2);
}
[class*="message-"] [class*="buttonContainer-"] [class*="wrapper-"] {
background-color: var(--shade1a);
}
[role*="dialog"]:not([class*="userPopout"]) [class*="root-"] { /* universal dialog upper */
background-color: var(--shade1a);
}
/* ------------ 2.6 stuff */
.theme-dark span[class*="searchFilter-"],
.theme-dark span[class*="searchAnswer-"] {
background-color: var(--background-tertiary);
border-radius: 0px;
}
.theme-dark span[class*="searchAnswer-"] {
color: var(--accentColour2)
}
/* Checkboxes - Slate Theme - Tropical */
.control-2BBjec [class*="container-"] .input-rwLH4i, /* guild settings > roles */
.control-2BBjec [class*="container-"] [class*="input-"], /* .input-3ITkQf, experimental */
#app-mount .checkboxWrapper-SkhIWG .input-rwLH4i,
#app-mount .checkboxWrapper-SkhIWG .input-3ITkQf {
margin: 0;
opacity: 1;
height: 16px !important;
width: 16px !important;
position: relative;
-webkit-appearance: checkbox;
appearance: checkbox;
cursor: pointer;
}
.control-2BBjec [class*="container-"], /* guild settings > roles */
[class*="checkboxWrapper-"] { /* #app-mount .checkboxWrapper-SkhIWG */
width: auto;
background: transparent !important;
display: flex;
align-items: center;
cursor: default;
}
.control-2BBjec [class*="container-"] [class*="slider-"],
#app-mount .checkboxWrapper-SkhIWG .slider-TkfMQL {
display: none;
}
[class*="checkboxWrapper-"] [class*="checkbox-"] {
display: none;
}
/* ------------ 2.5 stuff */
/* experimental selectors that provides its context in how it selects shit */
[class*="activityUserPopout-"] button,
[class*="activityProfile-"] button {
background-color: var(--shade1);
}
[class*="activityUserPopout-"] button:hover,
[class*="activityProfile-"] button:hover {
background-color: var(--shadeHighlight);
}
.message-2qnXI6:hover {
background-color: var(--background-message-hover);
}
/* universal caption buttons */
.theme-dark .lookFilled-1Gx00P.colorBrand-3pXr91,
.button-1YfofB.buttonColor-7qQbGO.buttonActive-3FrkXp /* Video Streaming, bottom left buttons */ {
background-color:var(--accentColour);
}
.theme-dark .lookFilled-1Gx00P.colorBrand-3pXr91:hover,
.button-1YfofB.buttonColor-7qQbGO.buttonActive-3FrkXp:hover /* Video Streaming, bottom left buttons */ {
background-color:var(--accentColour2);
}
.theme-dark .lookFilled-1Gx00P.colorGreen-29iAKY,
.theme-dark .lookFilled-1Gx00P.colorGrey-2DXtkV {
background-color: var(--shade1);
}
.theme-dark .lookFilled-1Gx00P.colorGreen-29iAKY:hover,
.theme-dark .lookFilled-1Gx00P.colorGrey-2DXtkV:hover {
background-color: var(--shadeHighlight);
}
/* custom selectors for unread messages divider */
.isUnread-3Ef-o9 /* 1px divider */ {
border-color: var(--accentColour);
}
.isUnread-3Ef-o9 .content-1o0f9g /* new date text */ {
color: var(--accentColour);
}
.isUnread-3Ef-o9 .unreadPill-2HyYtt /* pill text box */ {
background-color: var(--accentColour);
font-size:12px;
}
.isUnread-3Ef-o9 path /* attached to left of text */ {
color: var(--accentColour);
fill: var(--accentColour);
}
[class*="unreadPill-"]:after {
content: "\2009messages";
}
.theme-dark .mention {
color: var(--accentColour);
}
.theme-dark .mention:hover {
color: var(--accentColour2)!important;
}
.guildSeparator-33mFX6 /* Guild separator, line at top of guild list */ {
background-color:var(--accentColour);
}
.emojiButton-3uL3Aw /* channel text area, distance emoji/emote button from right side */ {
margin-right: 16px;
}
/* pending friend request action buttons */
.actionButton-uPB8Fs {
color: var(--text);
}
.actionButton-uPB8Fs.actionAccept-LV-szU:hover {
color: var(--textWarning)!important;
}
.colorDefault-2K3EoJ.focused-3afm-j /* context menu buttons hover */ {
background-color: var(--background-tertiary);
}
/* dropdown menus */
.css-gvi9bl-control,
.css-6fzn47-control, /* focused */
.css-rzbxvl-option, /* hover */
.css-17e1tep-control /* some other state */ {
background-color: var(--background-tertiary);
}
.css-1yz4bi9-option /* available options */ {
background-color: var(--shade1a);
}
[class*="lookLink"]:hover > div /* Reveal button in user settings > my account and maybe more? */ {
background-image:none;
text-decoration:underline;
}
.tipTitle-GL9qAt /* "Did you know" text. */ {
color:var(--accentColour);
}
/* beans additions ====== */
/* Friend Notifications log button below home button */
.friendsOnline-2JkivW {
color:var(--accentColour);
}
.label-2wRs_g:hover {
color:var(--accentColour2);
}
/* Two Factor Auth Typing */
.userSettingsSecurity-3IYeMF .isEnabled-24g9qA {
color: var(--accentColour);
}
/* beans additions end ==== */
/* ------------ 2.4 stuff */
.tooltipContent-bqVLWK /* tooltip inner */ {
border: 1px solid var(--shadeHighlight);
}
/* experimental divider / bottom divider style intended for user settings */
.h4-AQvcAz,
.h5-18_1nd {
border-bottom: 1px solid var(--shadeHighlight);
}
.input-cIJ7To /* profile popout, "Message @user" text box */ {
background-color: var(--textboxcolour);
}
/* ------------ 2.3 stuff */
.uploadModal-2ifh8j .icon-kyxXVr:not(.image-2yrs5j) /* file upload dialog, icon */ {
filter: invert(0.80);
}
.theme-dark .uploadModal-2ifh8j /* file upload dialog primary colour */ {
background-color: var(--background-tertiary);
}
.theme-dark .option-96V44q.selected-rZcOL- /* guild message search buttons */ {
background-color: var(--background-tertiary);
}
.theme-dark .option-96V44q:after /* guild message search buttons, fade effect */ {
display: none;
}
.protip-YaFfgO { /* user profile popout with roles, right click tip on bottom */
display: none;
}
/* recolouring warnings, independent border radius */
.colorStatusYellow-3sKKh2,
.warning-3C2pOH,
.warning-3C2pOH .icon-1jlFSw {
color: var(--textWarning);
background-color: var(--background-mentioned);
border-color:var(--textWarning);;
border-radius: 0px;
}
.theme-dark .headerExpanded-CUEwZ5 /* expanded log */ {
background-color: var(--background-tertiary);
}
.theme-dark .radioBar-bMNUI- {
border-left: 3px solid var(--radio-bar-accent-color)!important;
}
/* ------------ new additions for 2.1 that aren't extending on existing ones */
.theme-dark .children-19S4PO:after /* top bar weird gradient fix */{
background: unset;
border-left: 2px solid var(--accentColour2);
}
.noChannel-3LgMRp:before {
position: relative;
font-size: 20px;
animation: flicker 0.06s infinite backwards;
display: block;
font-family: var(--secondaryFont);
text-align: center;
content: "ooh shit someone fucked up for realz";
}
.theme-dark .footer-2gL1pp { /* "change username" footer */
background-color: var(--background-tertiary);
}
.jumpToPresentBar-G1R9s6 {
background-color: var(--shadeTransparent);
}
/* classic RealDark search */
.searchBar-3dMhjb,
.container-cMG81i /* new server settings role manager role search box */ {
border-radius: 0px;
background-color: var(--shadeHighlight);
border-bottom: 2px solid var(--textBoxUnderLine);
}
/* mentions / mention badges: recolouring to accent colour */
.mention-1f5kbO, /* guild list/channel list top/bottom auto scroll things */
.base-PmTxvP, /* amount of guild mentions/guild mention counter */
[class*="quickswitcher-"] [class*="badge-"] {
background-color: var(--accentColour)!important; /* important is required for the guild colour as its an inline property */
}
/* guild list / server list button modifications */
/* thanks to Emma in Powercord staff for fixing powercord/betterdiscord compatibility issues!! */
/* first up, if it exists, we make "explore public servers" button look the part */
.scroller-1Bvpku:nth-last-child(2) > .listItem-GuPuDH .circleIconButton-1QV--U, /* this was a pain in the ass to select for some reason */
.scroller-1Bvpku > .listItem-GuPuDH:nth-last-child(2) /* thanks, powercord support */ {
background-color: var(--background-tertiary);
color: var(--accentColour);
margin: 0;
}
/* and then the other 2 buttons */
.scroller-1Bvpku,
.platform-win .scroller-1Bvpku /* still required for some reason */ {
padding-top: 0px;
}
/* Home button (dms) */
.scroller-1Bvpku:nth-child(2) > .tutorialContainer-2sGCg9 {
top: 0;
z-index: 999;
position: sticky;
background-color: var(--background-tertiary);
}
/* tile colour override */
.tutorialContainer-2sGCg9 .childWrapper-anI2G9,
.tutorialContainer-2sGCg9 .wrapper-1BJsBx:hover .childWrapper-anI2G9 {
background-color: var(--background-tertiary);
color: var(--accentColour);
}
.tutorialContainer-2sGCg9 .wrapper-1BJsBx.selected-bZ3Lue .childWrapper-anI2G9 {
background-color: var(--background-tertiary);
color: var(--accentColour2);
}
/* Add a Server button */
.scroller-1Bvpku:nth-child(2) > .tutorialContainer-30WoTp {
bottom: 0px;
padding: 3px 0px 2px 0px;
position: sticky;
background-color: var(--background-tertiary);
}
/* tile colour override */
.tutorialContainer-30WoTp .circleIconButton-1QV--U {
background-color: var(--background-tertiary);
color: var(--accentColour);
}
.tutorialContainer-30WoTp .circleIconButton-1QV--U.selected-1JjBPm {
color: var(--accentColour2);
}
.tutorialContainer-30WoTp .listItem-GuPuDH {
margin: 0px;
}
/* adjusting the top/bottom new mention auto scroll things, as they are now in the way */
.unreadMentionsIndicatorTop-2-tcdU {
top: 48px;
}
.unreadMentionsIndicatorBottom-2mDYbI {
bottom: 53px;
}
/* main screen, top and bottom bars modifications */
.header-2o-2hj,
.container-1r6BKw.themed-ANHk51,
.searchBar-6Kv8R2,
.panels-j1Uci_,
.header-2V-4Sw /* 2.1 */ {
background: var(--background-tertiary);
}
/* top bar icon colours */
.container-1r6BKw path[fill="currentColor"],
.theme-dark .icon-1_QxNX path[fill="currentColor"] {
fill:var(--accentColour);
}
/* bottom left user utilities icon colours */
.icon-2doZ3q,
.iconContainer-2ZxvJk,
.button-14-BFJ {
color: var(--accentColour);
}
/* ------------------------------ end 2.1 i think */
/* send message box */
.form-2fGMdU {
padding: 0px;
margin: 0px; /* for some unknown reason, discord set margin-bottom to -8 !! */
}
.base-gE7OpD {
bottom:-4px;
}
.scrollableContainer-2NUZem {
background-color: var(--textboxcolour);
}
.channelTextArea-rNsIhG {
margin-bottom:0px;
}
.channelTextArea-rNsIhG {
padding-top: 5px;
padding-bottom: 4px;
background-color: var(--background-tertiary);
}
/* "new unreads" box */
.unread-1xRYoj {
background-color: var(--background-tertiary);
opacity: 1;
}
/* guild folders / server folders */
.theme-dark .expandedFolderBackground-1cujaW.hover-2ji_A7 {
background-color: var(--background-tertiary);
}
.theme-dark .expandedFolderBackground-1cujaW:not(.da-collapsed) {
border-radius: 0px;
background-color: var(--background-tertiary);
border-top: 2px solid var(--accentColour);
border-left: 2px solid var(--accentColour);
border-right: 2px solid var(--accentColour);
width: 44px;
}
.theme-dark .expandedFolderBackground-1cujaW:not(.da-collapsed):after {
position: absolute;
display: block;
content: "";
width: 100%;
height: 4px;
bottom: -4px;
left: -2px;
border-left: 2px solid var(--accentColour);
border-right: 2px solid var(--accentColour);
border-bottom: 2px solid var(--accentColour);
background-color: var(--background-tertiary);
}
.expandedFolderIconWrapper-Huv7rA {
background-color: var(--background-tertiary);
border:2px solid var(--accentColour);
width: 44px;
}
.folderIconWrapper-1_bOZe {
border-radius: 0px;
}
.theme-dark .button-OhfaWu.selected-wSa2KV {
background-color: var(--background-tertiary);
}
/* search box / search utility / search messages */
.searchResult-9tQ1uo:before, /* fading effect, incl :after */
.searchResult-9tQ1uo:after {
background-image: none;
}
.searchResultMessage-1fxgXh.hit-1fVM9e /* found messages */ {
background-color: var(--background-tertiary);
}
/* User Settings and Server Settings layout modification */
/* user settings navigation */
.sidebarRegion-VFTUkN,
.sidebarRegionScroller-3MXcoP {
flex: unset;
justify-content: flex-start;
}
.sidebar-CFHs9e {
padding: 40px 10px;
width: auto;
}
/* cool experimental User Settings header */
.side-8zPYf6 .header-2RyJ0Y:first-child {
background-color: var(--background-tertiary);
top: 0px;
position: sticky;
padding: 10px 10px;
margin-bottom: 10px;
max-width: 250px;
z-index: 1000;
border-top:10px solid var(--background-secondary);
}
/* user settings main panel / main screen */
.contentRegion-3nDuYy {
flex: 1 1 unset;
}
.contentColumn-2hrIYH, .customColumn-Rb6toI {
padding-top: 40px;
width: 100%;
max-width: unset;
min-width: unset;
}
/* settings main panel header */
.contentColumn-2hrIYH div:first-child h2,
.h2-2gWE-o, /* intended to affect user settings > keybinds */ {
background-color: var(--background-tertiary);
top: 0px;
position: sticky;
padding: 10px 10px;
margin-bottom: 10px;
z-index: 1000;
border-top:10px solid var(--background-primary);
}
/* guild settings > roles */
.sidebarScrollable-1qPI87+.content-1rPSz4,
.contentWidth-xLB44s, .page-3njELR {
max-width: unset;
}
/* ==== MegaSelector Zone ==== */
/* border radius, shadows, border */
foreignObject {
mask: none!important;
}
.base-PmTxvP,
.bar-30k2ka,
.item-2hkk8m,
.unread-2lAfLh,
.searchResultMessage-1fxgXh.hit-1fVM9e,
.attachment-33OFj0,
.hljs, /* code block */
.userPopout-3XzG_A ,/* profile popout */
.scrollableContainer-2NUZem, /* text box */
.channelTextArea-rNsIhG, /* text nox v2 */
.input-2VB9rf, /* ctrl+k text area */
.content-1x5b-n, /* channel buttons */
.lookFilled-1Gx00P, /* various caption buttons */
.jumpToPresentBar-G1R9s6,
.theme-dark .selected-1Tbx07, /* @mention list autocomplete button */
.theme-dark .autocomplete-1vrmpx, /* @mention list autocomplete area */
.root-SR8cQa, /* fullsize user profile */
.menu-3sdvDG, /* guild options dropdown */
.side-8zPYf6 .item-PXvHYJ, /* user/guild settings sidebar buttons */
.background-1QDuV2, /* user name/phone/email etc area, possibly more? */
.button-38aScr, /* all caption buttons..? */
.layout-2DM8Md, /* member list members */
.emptyChannelIcon-cc932w, /* channel history beginning, "#" icon */
.radioBar-bMNUI-, /* user settings > privacy & safety radio box at top */
.item-26Dhrx,
.theme-dark .auditLog-3jNbM6, /* audit log action */
.theme-dark .card-o7rAq-, /* server settings > intergrations */
.previewContainer-1KQDJS, /* new server settings role manager role preview */
.container-_phMUq, /* new server settings role manager @everyone card thing */
.colorPickerSwatch-5GX3Ve, /* server settings role colour picker */
.px-10SIf7.botTag-2WPJ74, /* all bot tags..? */
.topPill-30KHOu .item-PXvHYJ, /* new server settings role manager horizontal tabs */
.descriptionBox-1EKQKL, /* server template near header */
.container-3XJ8ns, /* add role */
.item-2J2GlB, /* add role selection */
.option-96V44q, /* guild message search buttons */
.tab-2j5AEF, /* guild message search hit, tab buttons */
.searchResult-9tQ1uo, /* guild message search hit messages */
.messageGroupWrapper-o-Zw7G, /* Pinned Messages messages */
.messagesPopoutWrap-1MQ1bW, /* Pinned Messages Wrapper */
.theme-dark .uploadModal-2ifh8j, /* file upload dialog primary */
.theme-dark .footer-3mqk7D, /* file upload dialog secondary */
.tooltip-2QfLtc, /* all tooltips */
.input-cIJ7To, /* profile popout, "Message @user" text box */
[class*="nowPlayingColumn"] [class*="outer-"], /* friend list "Active Now", users */
[class*="nowPlayingColumn"] section, /* friend list "Active Now", game name box */
.textContainer-C0szpm, /* code file preview, upper */
.footer-2yA7Ep, /* code file preview, lower */
.peopleListItem-2nzedh.active-rhSpJJ, /* friends list friend */
.peopleListItem-2nzedh:hover, /* friends list friend */
.actionButton-uPB8Fs, /* friends list friend buttons */
.result-oB0z--, /* ctrl + k menu, selections */
.icon-kyxXVr.image-2yrs5j, /* image upload / file upload dialog image preview */
.imageWrapper-2p5ogY, /* channel messages, image preview */
.embed-IeVjo6 *, /* everything within a message embed */
.closeButton-1tv5uR, /* settings area close button */
.connectionHeader-2MDqhu, /* user settings > connections, connection box upper */
.connection-1fbD7X, /* user settings > connections, connection box lower, main */
.inner-2Y6JuD, /* user settings > connections, add connection button icons */
.accountList-33MS45, /* user settings > connections, first panel where add connection buttons are */
.container-3ayLPN, /* guild message search context popup */
.newMessagesBar-265mhP, /* channel message area, "xx new messages since xx:xx" at top */
.searchBar-6Kv8R2 .searchBarComponent-32dTOx, /* dm list "find or start a conversation" box at top */
.mention,
.content-1Wq3SX, /* guild voice channels / vc, member hover */
.css-1kj8ui-container > div, /* dropdown selector */
.fieldList-21DyL8, /* user settings > my account, account details inner wrapper */
.container-3auIfb, .input-rwLH4i, /* checkbox in noise supression area above user */
.invite-18yqGF, .artwork-1vrmJ_, /* Spotify invite. */
[id*="-context"] [class*="item-"], /* ctx menu buttons */
#guild-header-popout [class*="item-"], /* guild options buttons */
[class*="roleDot-"], [class*="RoleDot-"], [class*="roleCircle"],
[class*="circleButton-"],
.container-2VW0UT, /* unsaved changes notice */
[role*="dialog"] [class*="root-"],
[class*="footer-"],
[class*="card-"],
[class*="message-"] [class*="buttonContainer-"] [class*="wrapper-"],
[class*="scroller-"] [class*="item-"],
[class*="recentMentionsPopout-"] [class*="button-"],
[class*="quickswitcher-"] [class*="badge-"],
[class*="messagesPopout"] [class*="messageContainer"], /* inbox messages */
[class*="iconActiveMedium"],
[class*="slider-"] [class*="grabber-"],
[class*="reaction-"],
[class*="userPopout"] [class*="headerTop"] {
box-shadow: none!important;
webkit-box-shadow:none!important;
border-radius: 0px!important;
border: none!important;
/*border: 1px solid var(--accentColour2);*/ /* should be toggleable in devtools */
}
.iconInactive-98JN5i, /* mutual servers/friends */
.wrapper-3t9DeA img,
.contents-2mQqc9 img, /* avatar border radius */
.wrapper-1BJsBx img,
.acronym-2mOFsV, /* guilds in guild list without set icon */
.avatarUploaderInner-3UNxY3, /* guild settings */
.iconActiveLarge-2nzn9z, /* server invite guild/server icon */
.border-Jn5IOt, /* direct vc speaking indicator */
.overlay-39bWkM, /* direct vc speaking indicator? */
.voiceAvatar-14IynY, /* direct vc profile pic */
.avatar-SmRMf2.spotify-cover, /* default Powercord plugin for Spotify, above logged in user in bottom left */
.avatarSpeaking-2IGMRN, .avatar-3tNQiO, /* vc avatars */
[class*="wrapperSimple-"], /* small bugfix for guild icons */
[class*="avatarWrapperNormal"] [class*="avatar-"] {
border-radius: var(--icon-rounding)!important/*required for spotify plugin*/;
/*border: 1px solid var(--links);*/ /* should be toggleable in devtools */
}
.role-2irmRk, /* profile popout, role colour dot */
.sidebar-2K8pFh /* top left corner of the guild dropdown/channel area */ {
border-radius: 0px!important;
}
/* remove uppercase */
.header-2RyJ0Y,
.h2-2gWE-o,
.container-2ax-kl,
.bar-30k2ka,
.contentTitle-2tG_sM,
.h4-AQvcAz,
.h5-18_1nd,
.titleText-1ZIyhl, /* new server settings role manager role text */
.titleText-1lbERP, /* new server settings role manager title */
.resultsGroup-r_nuzN .header-2N-gMV, /* guild message search */
.bodyTitle-Y0qMQz, /* profile popout Role / Note text */
.headerText-1HLrL7, /* profile popout "Playing a game" */
[class*="nowPlayingColumn"] > div h3, /* friend list "Active Now" text */
.header-13MUnb, /* ctrl + k menu, headers */
.uploadModal-2ifh8j .inner-3nWsbo .comment-4IWttf .label-3aiqT2, /* file upload dialog comment prompt */
.userInfoSectionHeader-CBvMDh, /* fullscreen user profile, "Note" header */
.activityHeader-1PExlk, /* fullscreen user profile, activity header */
.unreadPill-2HyYtt, /* unread messages divider */
.overrideList-Xc_VCf [class*="header-"], /* notification settings header */
[class*="subtitle-"][class*="size12"] /* droptown menu subtext (channel categories, etc) */ {
text-transform: none!important;
}
/* after removing uppercase, it is usually necessary to increase the font size. */
/* headers new font size */
.h2-2gWE-o,
.side-8zPYf6 .header-2RyJ0Y:first-child,
.titleText-1ZIyhl, /* new server settings role manager role text */
.titleText-1lbERP /* new server settings role manager title */ {
font-size: 18px;
}
/* sub-headers new font size */
.container-2ax-kl,
.bar-30k2ka,
.content-1o0f9g, /* messages divider, new day */
.contentTitle-2tG_sM,
.h4-AQvcAz,
.h5-18_1nd,
.resultsGroup-r_nuzN .header-2N-gMV, /* guild message search */
.bodyTitle-Y0qMQz, /* profile popout Role / Note text */
.headerText-1HLrL7, /* profile popout "Playing a game" */
[class*="nowPlayingColumn"] > div h3, /* friend list "Active Now" text */
.header-13MUnb, /* ctrl + k menu, headers */
.uploadModal-2ifh8j .inner-3nWsbo .comment-4IWttf .label-3aiqT2, /* file upload dialog comment prompt */
.userInfoSectionHeader-CBvMDh, /* fullscreen user profile, "Note" header */
.activityHeader-1PExlk, /* fullscreen user profile, activity header */
.overrideList-Xc_VCf [class*="header-"], /* notification settings header */
[class*="subtitle-"][class*="size12"] /* droptown menu subtext (channel categories, etc) */ {
font-size: 16px;
}
/* align text to centre */
.side-8zPYf6 .header-2RyJ0Y:first-child,
.container-2ax-kl,
.contentColumn-2hrIYH div:first-child h2,
.h2-2gWE-o {
text-align: center;
}
/* manually add shade highlight */
.searchBar-6Kv8R2 .searchBarComponent-32dTOx, /* dm list "find or start a conversation" box at top */
.button-14-BFJ.enabled-2cQ-u7:hover, /* bottom left mute/deafen/settings buttons */
.botTagRegular-2HEhHi, /* Bot tag */
.theme-dark .mention:hover,
.topSectionPlaying-1J5E4n, /* user profile screen, activity background override */
.theme-dark .selected-1Tbx07 /* @mention autocomplete list button hover */ {
background-color: var(--shadeHighlight);
}
/* manually add shade colour 1 */
.closeButton-1tv5uR, /* settings area close button */
.theme-dark .closeButton-1tv5uR:hover,
.theme-dark .footer-3mqk7D, /* upload modal secondary colour */
.header-ykumBX,
.container-3XJ8ns,
.container-_phMUq, /* new server settings role manager @everyone */
.theme-dark .auditLog-3jNbM6, /* guild audit logs, log actions */
.theme-dark .attachment-33OFj0, /* attached file */
.theme-dark [class*="nowPlayingColumn"] [class*="outer-"]:hover, /* friend list "Active Now", users */
/* search box / search utility / search messages */
.theme-dark .container-3ayLPN, /* before search options */
.searchHeader-2XoQg7, /* search results header */
/* profile popout modifications */
.userPopout-3XzG_A .headerNormal-T_seeN {
background-color: var(--shade1);
}
/* manually add shade colour 2 */
.messageGroupWrapper-o-Zw7G, /* Pinned Messages messages */
.footer-2yA7Ep, /* code file preview, lower */
[class*="nowPlayingColumn"] section, /* friend list "Active Now", game name box */
/* guild list, guild folders modifications */
.scroller-1Bvpku,
/* search box / search utility / search messages */
.searchResult-9tQ1uo, /* surrounding messages */
/* friends list / friend list modifications */
.userPopout-3XzG_A > div:not(.headerNormal-T_seeN) {
background-color: var(--shade2);
}
/* manually add shade colour 3 (--background-secondary) */
.textContainer-C0szpm, /* code file preview, upper */
/* friends list / friend list modifications */
.peopleColumn-29fq28,
.theme-dark .container-VSDcQc .sectionTag-pXyto9 > div /* add role */ {