Skip to content

Instantly share code, notes, and snippets.

@srhinos
Created March 15, 2026 22:03
Show Gist options
  • Select an option

  • Save srhinos/17fa8855d4a2f2405efb776b464266c9 to your computer and use it in GitHub Desktop.

Select an option

Save srhinos/17fa8855d4a2f2405efb776b464266c9 to your computer and use it in GitHub Desktop.
Vencord CSS to remove most annoying Discord bloat features / slop.
[class*="avatarDecoration"] {
display: none;
}
[class*="profileEffects"] {
display: none;
}
[class*="nameplated"] > div:first-child {
display: none !important;
}
div[class*="sidebar_"] > [class*="panels_"] > div[class*="mask_"] {
display: none !important;
}
[class*="channel"][class*="dm"] {
[class*="avatarDecoration"] {
display: none !important;
}
[class*="videoContainer"] {
display: none !important;
}
[class*="container"][class*="fadeIn"] {
display: none !important;
}
}
[class*="username_"][class*="usernameGradient"],
[class*="username_"][class*="twoColorGradient"],
[class*="username_"][class*="convenienceGlowGradient"] {
background: none !important;
-webkit-background-clip: unset !important;
background-clip: unset !important;
-webkit-text-fill-color: var(--custom-gradient-color-1) !important;
}
[class*="roleCircle"][class*="twoColorGradient"],
[class*="roleCircle"][class*="gradientDotAnimation"] {
background: var(--custom-gradient-color-1) !important;
animation: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment