diff --git a/src/plugins/album-color-theme/index.ts b/src/plugins/album-color-theme/index.ts index 58ba7d7e..a040bfa4 100644 --- a/src/plugins/album-color-theme/index.ts +++ b/src/plugins/album-color-theme/index.ts @@ -119,6 +119,9 @@ export default createPlugin({ .then((albumColor) => { if (albumColor) { const [hue, saturation, lightness] = this.hexToHSL(albumColor.hex); + this.hue = hue; + this.saturation = saturation; + this.lightness = lightness; this.changeElementColor(this.playerPage, hue, saturation, lightness - 30); this.changeElementColor(this.navBarBackground, hue, saturation, lightness - 15); this.changeElementColor(this.ytmusicPlayerBar, hue, saturation, lightness - 15);