puckzxz / NotAnotherAnimeTheme

A easily customizable and automatically updating theme for Discord
The Unlicense
249 stars 981 forks source link

Rainbow 'Unread' issue #45

Closed EnderWeeb132 closed 6 years ago

EnderWeeb132 commented 6 years ago

I can't seem to change the rainbow thing on the Unread Channels thing. No matter what I do it's still rainbow.

Qu4k3 commented 6 years ago

@EnderWeeb132 Here you got the code regarding your issue. Take a look.

.guilds-wrapper .guilds .guild.unread:before { background: rgba(67, 181, 129, 0.8); animation: hue-rotate 3s linear infinite; }

background: rgba(67, 181, 129, 0.8); change default color to the one you desire animation: hue-rotate 3s linear infinite; change to animation: none !important; in order to remove the rainbow efect

EnderWeeb132 commented 6 years ago

Thanks. Hoping it works

Qu4k3 commented 6 years ago

Adding this at the end of your theme's css file or in BD's custom css will remove the rainbow effect.


.guilds-wrapper .guilds .guild.unread:before {
    animation: none !important;
}