HAHALOSAH / discord_premium_themes

12 stars 7 forks source link

Scrollbar is not colored #1

Open MercurialPony opened 1 year ago

MercurialPony commented 1 year ago

Using BetterDiscord 1.9.0 the scrollbar in text channels is not colored

image

HAHALOSAH commented 1 year ago

Thank you for letting me know, I will fix it later today

NobleSkye commented 1 year ago

i made a fix :3

.theme-dark .customTheme-3QAYZq.auto-2TJ1RH::-webkit-scrollbar-thumb,
.theme-dark .customTheme-3QAYZq.thin-RnSY0a::-webkit-scrollbar-thumb {
    background-color: #00FFFF; /* Neon blue */
}

.theme-light .customTheme-3QAYZq.auto-2TJ1RH::-webkit-scrollbar-thumb,
.theme-light .customTheme-3QAYZq.thin-RnSY0a::-webkit-scrollbar-thumb {
    background-color: #00FFFF; /* Neon blue */
}

.theme-dark .customTheme-3QAYZq.auto-2TJ1RH::-webkit-scrollbar-track,
.theme-dark .customTheme-3QAYZq.thin-RnSY0a::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #106c74, #18487c); /* Gradient from neon blue to dark blue */
}

.theme-light .customTheme-3QAYZq.auto-2TJ1RH::-webkit-scrollbar-track,
.theme-light .customTheme-3QAYZq.thin-RnSY0a::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #106c74, #18487c); /* Gradient from neon blue to dark blue */
}

this is for discord_premium_theme.theme.css

just replace the top. it does effect all themes but if you only use chroma it works fine

it does use the actual hex colours from discord so it should match well

HAHALOSAH commented 1 year ago

Thank you! https://github.com/HAHALOSAH/discord_premium_themes/pull/2 I will merge the PR when I have time to test it later.