diff options
author | whqwert <94757998+whqwert@users.noreply.github.com> | 2023-03-30 10:09:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 17:09:04 +0200 |
commit | 035d1e24b2fc146d8bf8a621a57974008193eae7 (patch) | |
tree | 7331ba6df341a879a9d4a9cb6339d3c74ea2548e | |
parent | 48e9b1be7a638d7b2f0ac01f8244dab43836cbdf (diff) | |
download | Vencord-035d1e24b2fc146d8bf8a621a57974008193eae7.tar.gz Vencord-035d1e24b2fc146d8bf8a621a57974008193eae7.tar.bz2 Vencord-035d1e24b2fc146d8bf8a621a57974008193eae7.zip |
feat(SpotifyControls): Fix background color for built-in themes (#731)
Co-authored-by: V <vendicated@riseup.net>
-rw-r--r-- | src/plugins/spotifyControls/spotifyStyles.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/plugins/spotifyControls/spotifyStyles.css b/src/plugins/spotifyControls/spotifyStyles.css index 63a06e3..18fb175 100644 --- a/src/plugins/spotifyControls/spotifyStyles.css +++ b/src/plugins/spotifyControls/spotifyStyles.css @@ -5,6 +5,14 @@ --vc-spotify-green: #1db954; /* so cusotm themes can easily change it */ } +.theme-light #vc-spotify-player { + background: var(--bg-overlay-3, var(--background-secondary-alt)); +} + +.theme-dark #vc-spotify-player { + background: var(--bg-overlay-1, var(--background-secondary-alt)); +} + .vc-spotify-button { background: none; color: var(--interactive-normal); |