LuckFire / amoled-cord

A basically pitch black theme for Discord. Lights out, baby!
MIT License
411 stars 286 forks source link

members list and viewing multiple images broken #44

Closed LunarRoze closed 1 year ago

LunarRoze commented 1 year ago

don't remember when it happened but it was pretty recent

colors of people in the members list are lighter than normal image

this also happens when there's multiple images in a message image this doesn't happen when there's one image, only when there's more than one

FedeIlLeone commented 1 year ago

Meanwhile, you can use these two snippets to put in your Custom CSS / Quick CSS / or whatever. I doubt the theme will be updated in the short term, as a rewrite is in wip which will take some time.

1) You can fix the members list items with this.

.member-48YF_l,
.members-3WRCEx {
    background-color: var(--background-primary);
}

2) When there are multiple images in a message, Discord renders them as a carousel in a transparent modal. Since amoled-cord changes the modal background color, this also affects the carousels. If I'm not wrong, the fix below should be ok, but I'm not sure if it could break other carousels (I don't remember where they are in the app).

.zoomedCarouselModalRoot-beLNhM.root-g14mjS {
    box-shadow: none !important;
    background-color: transparent !important;
}
LunarRoze commented 1 year ago

nice, that works. ty