Darker colours come from using Default UI (top) as opposed to Columns UI (bottom).
Thanks for the reply, I was thought you were using custom build that able to change that main dark background.
---
I have another question. In regard to Track Info + Seekbar + Buttons script. I would like to add a shuffle/default toggle button that can switch between different icon and colour states.
I'm not sure how to make the toggle function work, and I'm not a programmer, so I have them on a separate button instead.
May I ask how to make it on one button toggle?
Many thanks
//default
this.buttons.regular = new _button(panel.w - LM - (bs * 4), y, bs, bs, {
char: !fb.RunMainMenuCommand('Playback/Order/Default') || fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)')
? '\uF074'
: chars.music,
colour: RGB(255, 255, 255)
}, null, function () {
if (fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)')) {
fb.RunMainMenuCommand('Playback/Order/Default');
}
}, !fb.RunMainMenuCommand('Playback/Order/Default') || fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)')
? 'Default'
: 'Shuffle');
//shuffle
this.buttons.shuffle = new _button(panel.w - LM - (bs * 5), y, bs, bs, {
char: '\uF074',
colour: fb.StopAfterCurrent
? colours.sac
: colours.test
}, null, function () {
fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)');
}, 'Shuffle');