Hi there,
You will need to add some custom CSS to achieve this.
Install and activate this plugin then go to “Add Custom CSS” on your dashboard and paste this
/*Volumn control hover and focus buttons */
.ai-wrap .ai-btn:hover svg,
.ai-wrap .ai-btn:focus svg {
color: red;
}
/*Main play button */
.ai-wrap .ai-audio-control {
background: blue;
}
/*Main play hover and focus */
.ai-wrap .ai-audio-control:hover,
.ai-wrap .ai-audio-control:focus {
background: green;
}
/* Volume bars */
.ai-wrap .ai-volume-bar.ai-volume-bar-active::before {
background: cyan;
}
/* Music progress */
.ai-wrap .ai-track-progress {
background: magenta;
}
in the box.
Replace each color with your preference.
Let me know if this helps