Merge pull request #261 from 9hax/patch-1

Add Sidebar Color Updates
This commit is contained in:
morpheusthewhite 2021-02-08 14:16:25 +01:00 committed by GitHub
commit 8f6fe1ffe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,6 +254,14 @@ function updateColors(root) {
//root.style.setProperty('--modspotify_rgb_scrollbar_fg_and_selected_row_bg', darkerColRGB)
root.style.setProperty('--modspotify_rgb_selected_button', darkerColRGB)
//root.style.setProperty('--modspotify_rgb_miscellaneous_hover_bg', colRGB)
// Also update the color of the icons for bright and white backgrounds to remain readable.
var colRGB = colRGB.split(",")
var brightness = Math.round(((parseInt(colRGB[0]) * 299) +
(parseInt(colRGB[1]) * 587) +
(parseInt(colRGB[2]) * 114)) / 1000);
var textColour = (brightness > 125) ? '#000000' : '#ffffff';
root.style.setProperty('--modspotify_preserve_1', textColour);
}
function updateColorsAllIframes() {