Author Topic: Changing the color of the "loved" incon  (Read 1327 times)

cpc2

  • Newbie
  • *
  • Posts: 5
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



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>
Last Edit: May 14, 2022, 02:52:49 AM by cpc2