2019-01-03, 15:34
(2019-01-03, 12:42)microbrew Wrote:(2019-01-03, 12:28)Gade Wrote:(2019-01-03, 11:28)microbrew Wrote: Really liking this skin. Still trying to figure out some of the settings.
Would it be possible to change the volume control color without affecting other colors within the skin?
Regards
Hi microbrew.
Thanks for the support. Glad you like the skin.
It's only possible changing that color by editing the xml files manually.
I can guide you through it, but you should note that all custom edits are overwritten each time the skin updates.
Please let me know if you have any other questions or suggestions.
You can find a detailed guide to the skin settings and other tips at the wiki: https://kodi.wiki/view/Add-on:Rapier
Hi Gade,
That would great.
I’ve done some editing before in the colors default.xml. I looked in the DialogVolumeBar.xml also, but didn’t see any color settings.
Regards
The volume control is an image.
So the only way to achieve this is to add a colordiffuse to the image.
Colors are hex colors.
The first 2 letters control the transparency (ff is full visible).
DialogVolumeBar.xml:
add "colordiffuse="ffxxxxxx" somewhere in line 33 and 34.
Example:
Code:
<texturebg border="5" colordiffuse="ff777777">controls/volume-slider-background.png</texturebg>
<midtexture border="5" colordiffuse="ff777777">controls/volume-slider.png</midtexture>
includes_StatusBar.xml:
add "colordiffuse="ffxxxxxx" somewhere in line 140 and 141.
Example:
Code:
<texturebg border="5" colordiffuse="ff777777">controls/volume-slider-background.png</texturebg>
<midtexture border="5" colordiffuse="ff777777">controls/volume-slider.png</midtexture>