getmusicbee.com

Support => Developers' Area => Skins => Topic started by: cpc2 on May 14, 2022, 02:19:35 AM

Title: Changing the color of the "loved" incon
Post by: cpc2 on May 14, 2022, 02:19:35 AM
Hi, I was trying to edit one of the default themes and change the loved icon. I did another edit of a different element and it worked, so not sure what's the issue. It looks like this:
Code
<?xml version="1.0" encoding="utf-8"?>
<root dependsOn="Gray (slim).xmlc">
 <element id="Panel.PlayerLastFmLove" fg="28,28,28"></element>
</root>
But I'm not sure what to use as ID, probably not that. I tried different things like id="PlayerLastFmLove", id="LastFmLove", id="Panel.LovedIcon"... But none seem to work. I tried searching in the forums but couldn't find a solution, does anyone know what's the issue? Thanks!

PS: This is the icon I mean
(https://i.imgur.com/0oomiPI.png)


Edit: Okay figured it out. I thought the icon was hardcoded and you could change the color, but apparently it's an image in base64, so I got it to work like this:

Code
<?xml version="1.0" encoding="utf-8"?>
<root dependsOn="Gray (slim).xmlc">
 <element id="LastFmLove">[BASE 64 OF THE ICON]</element>
</root>