Hi @manuelroccati
Currently there is no built-in support in the plugin itself for adding different colors. But you can add custom CSS to your site via Theme Customization, like so:
https://ibb.co/TvsdwmJ
The CSS need to be applied:
#mobile-contact-bar-outer li:nth-child(1) {
background-color: #355070;
}
#mobile-contact-bar-outer li:nth-child(2) {
background-color: #6d597a;
}
#mobile-contact-bar-outer li:nth-child(3) {
background-color: #b56576;
}
#mobile-contact-bar-outer li:nth-child(4) {
background-color: #e56b6f;
}
Glad it worked. Good luck with the plugin!