Audio Player colors...How to change?

What do I put into the CSS to change the audio player colors? The grey is too dark for my site.

Hello @RRierson,

Thanks for asking. :slight_smile:

You can use following CSS selector .mejs-controls coupled with CSS background property. I am sharing links and sample code to help you get started:

https://www.w3schools.com/css/css_background.asp

.mejs-controls {background-color: #ddd;}

Thanks.