Created
March 15, 2026 22:03
-
-
Save srhinos/17fa8855d4a2f2405efb776b464266c9 to your computer and use it in GitHub Desktop.
Vencord CSS to remove most annoying Discord bloat features / slop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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