#Remove glow and gradient from usernames
1 messages · Page 1 of 1 (latest)
It’s a boosting perk
Not every server has it yet though
personally i don't mind the gradient but the glow was too much, this just removes glow i think:
.convenienceGlowGradient_e5de78:after {
filter: blur(0px);
}
.nameGlow__703b9 {
display: none;
}
There’s also distinct nameGlow__703b9 for members list
If they wanted to include the glow it makes sense to have a duplicate instead of blurring the entire username cause then you just can’t read it
you can achieve that without duplicating the element
they did it for in-chat usernames
hence why it's blur 0 vs display none
Wait so there’s two different ways they achieve the same thing
yes lmao
Why would they even do that lmao
they aren't known for efficiency
True

ty
gradients are a cool idea for a perk but holy shit is it unreadable
ohh thats why thanks
Yeah I can't believe you can't turn it off by default for accessibility reasons; I personally like the gradient but the glow is too much
agree
is there a way for it to still show up when u look at the roles in popouts?
but not in the message/members area
where exactly?
i didn't see anywhere it glows/animates other than the member/message areas
can you show without the css too?
i thought that’s just what it looked like
might be a theme thing
yeahh that’s a theme thing
hm
disabled all other themes
well if you’re ok with gradient, mine doesn’t mess with that
but if it's too complicated it's ok ^^
it’s possible
I have colour border around usernames and the gradient makes it a shitshow
so that's why this css was a saving for me
the gradient makes it impossible to read names lmao
with the bg behind usernames

like the theme could probably be updated to support gradients
/* remove gradient glow in chat and user list */
.threeColorGradient_e5de78,
.twoColorGradient_e5de78 {
&.usernameGradient_e5de78 {
color: color-mix(in lab, var(--custom-gradient-color-1), var(--custom-gradient-color-2));
background: none;
-webkit-text-fill-color: initial;
}
&::after,
&.nameGlow__703b9 {
display: none;
}
}
``` this should work @queen cedar
@frozen flicker it breaks the little circle, but chat username + member list username both have usernameGradient_e5de78 so i matched on that too
ah thank you, I will try it out tomorrow, I already turned off my pc 😅
Thank you very much :)
update the code to what you sent?
sure, the only change is matching on usernameGradient to fix the circles
kk
im not a css pro so idk if i used the proper way but it seemed to work
wtf glowing username is a thing?
How would I edit this to only remove the glow, but keep the scrolling color effect?
@ebon rampart try this

What was discord smoking while adding the glow
Also the scrolling is unnecessary
But I think there’s another snippet for that
For some reason this no longer functions 🙃
Seems like the hover was updated to the class convenienceGlowGradient_e5de78 so adding the word Glow should fix it (it did for me)
i'll change that in the snippet

Came here because the gradient role colors has become a huge accessibility issue with so many servers using it.
Thank you, this makes the app actually barrable until discord (hopefully) adds a native option to do this
(thanks Vencord itself too, erm, from what i can tell vencord isn't really designed to improve w/ accessibility, but custom css helps with that lol)
