#Useful snippets
1 messages Β· Page 1 of 1 (latest)
Hide "AKA" section in user profile #π¨-css-snippets message
Alternate version, blur or hover versions: #π¨-css-snippets message
Hide avatar decorations (you are a fun killer)
#π¨-css-snippets message
Acrylic popouts/menus #π¨-css-snippets message
Change Discord's Accent Color
https://gist.github.com/llsc12/16c7067f97867fafde2d2c6c0dd5cd1d/raw/discord-accent-color.css
Add this to your Quick CSS and edit the two lines to change the accent color.
Desaturate offline users in DMs #π¨-css-snippets message
Hide entries in Settings context that don't have extra options #π¨-css-snippets message>
Add icons to context menu items:
Fav/Unfav emote: #π¨-css-snippets message
Remove all reactions: #π¨-css-snippets message
Delet super reactions (once again, u r fun killer
) #π¨-css-snippets message
Make channel indicators look like dots #π¨-css-snippets message
Change your name color in every server #π¨-css-snippets message
Bigger reactions
#π¨-css-snippets message
Remove notes from user popout
/* Hide note section */
[class*=section-]:has([class*=note-]) {
display: none;
}
/* Pad bottom */
[class*=section-]:has([class*=roles-]) {
padding-bottom: 16px;
}
Most of these should still work, if not then 
Discord is the easiest way to communicate over voice, video, and text. Chat, hang out, and stay close with your friends and communities.
SpotifyControls icons thing: #π¨-css-snippets message (i lost it and dont want to scroll up ever)
my contribution
anyway to get custom folder images?
i forgor this thread existed
lol
Is the remove note snippet broken?
I'm not seeing a difference
Here's an improved one
/* Large Popout */
div.userInfoSection_e816c1 > h1:nth-last-child(2) {
display: none;
}
.note__7a4f4 {
display: none;
}
div.userInfoSection_e816c1 > div:nth-last-child(3) > div.userInfoText_b87307 {
margin-bottom: 0px;
}
/* DM Divider */
div.userPanelOverlayBackground_a2b6ae.overlayBackground__345c9 > .divider_d6f39c:nth-last-child(2) {
display: none;
}
/* Small and DM */
.section__62b44:has(.note_ba0c31) {
display: none;
}```
or if you want to customize which ones are hidden:
/* Large Popout */
/* div.userInfoSection_e816c1 > h1:nth-last-child(2) {
display: none;
}
.note__7a4f4 {
display: none;
}
div.userInfoSection_e816c1 > div:nth-last-child(3) > div.userInfoText_b87307 {
margin-bottom: 0px;
} */
/* In DMS */
/* div.userPanelOverlayBackground_a2b6ae.overlayBackground__345c9 > .divider_d6f39c:nth-last-child(2) {
display: none;
} */
/* Delete if using the both small and dm */
/* div.userPanelOverlayBackground_a2b6ae.overlayBackground__345c9 > div:has(.note_ba0c31) {
display: none;
} */
/* Works for both small and dm (not the divider) */
/* .section__62b44:has(.note_ba0c31) {
display: none;
} */
/* Small Popout */
/* Delete if using the both small and dm */
/* .scroller_f9a667.thin__62e51.scrollerBase__65223 > .section__62b44:has(.note_ba0c31) {
display: none;
} */```
idk i lost motivation constantly editing this lol