#need help downloading this

1 messages · Page 1 of 1 (latest)

zealous elbow
#

does anyone know how to add more css plugins? i already have one in there, i tried adding another one but that didn’t work for some reason

#

like i have this other css plugin downloaded, but when i try adding this to the “QuickEditCSS” it won’t work

#

idk if i’m doing it right

zealous elbow
nova cedar
#

put it in between three backticks ` either side

zealous elbow
zealous elbow
nova cedar
nova cedar
#

it should work fine, what u have already doesnt conflict

zealous elbow
#

its better if show you hold on

zealous elbow
#

but im guessing its wrong since it didnt work for me

nova cedar
#

oh i think ik, u didnt add it wrong dw

#

find the role u want it to apply to, go in devtools and select it so u can see what color it is

#

for example mine looks like this

/*
 * @name Reveal Dark Usernames
 * @description Be able to see dark usernames when hovering over them.
 * @author tom2k
*/
[style^="color: rgb(0, 0, 0);"], /* black */
[style^="color: rgb(2, 2, 2);"], /* ? black */
[style^="color: rgb(5, 0, 5);"], /* color chan black */
[style^="color: rgb(15, 2, 2);"], /* hiraeth black */
[style^="color: rgb(12, 4, 99);"], /* vencord role dark blue */
[style^="color: rgb(0, 1, 0);"], /* swiss bedwars black */
[style^="color: rgb(10, 1, 2);"], /* sewerperson owner black */
[style^="color: rgb(0, 0, 1);"], /* sewerperson admin black */
[style^="color: rgb(9, 8, 8);"], /* xona loha black */
[style^="color: rgb(12, 12, 12);"] /* xona crescent black */ {
    [class*=username_]& {
        [id^=chat-messages]:hover &, /* chat messages */
        [class^=member_]:hover &, /* members list */
        [class^=membersGroup_]:hover &  /* members list headers (RoleColorEverywhere plugin) */ {
            color: var(--text-normal) !important;
        }
    }
    .mention&:hover /* mentions (RoleColorEverywhere plugin) */,
    [class^=channelTextArea_] [class^=wrapper_]&:hover /* mentions in chat bar (RoleColorEverywhere plugin) */ {
        color: var(--text-normal) !important;
        background-color: color-mix(in srgb, var(--text-normal) 20%, transparent) !important;
    }
}
zealous elbow
#

thank u so much, sorry for bothering u

#

much love

fiery oracle
#

Would love to see same but for light theme users

nova cedar
# fiery oracle Would love to see same but for light theme users

it works the same, just create a list of colors at the top. here i added 2 for you:

/* create a list of light role colors here */
[style^="color: rgb(255, 255"], /* most yellows */
[style^="color: rgb(233, 209, 227);"] /* vencord "Hausmeister*innen" */ {
    [class*=username_]& {
        [id^=chat-messages]:hover &, /* chat messages */
        [class^=member_]:hover &, /* members list */
        [class^=membersGroup_]:hover &  /* members list headers (RoleColorEverywhere plugin) */ {
            color: var(--text-normal) !important;
        }
    }
    .mention&:hover /* mentions */,
    [class^=channelTextArea_] [class^=wrapper_]&:hover /* mentions in chat bar */ {
        color: var(--text-normal) !important;
        background-color: color-mix(in srgb, var(--text-normal) 20%, transparent) !important;
    }
}
fiery oracle