Hi @Alteco,
I’d never noticed that you’re not able to change the infobar colour as an option in settings
The below JavaScript seems to work ok
// Select the info bar element
var infoBar = document.querySelector("#knack-dist_1 > div.kn-info-bar");
// Check if the element is found
if (infoBar) {
// Change the background color
infoBar.style.backgroundColor = "#ff9e54";
}
Just update the backgroundColor to a hex code of your choosing.