The default appearance of an mp3 file when placed on a page is this:
Is it possible to code a template that could add things such as color or a title?
Hello,
The audio player will look different depending the user browsing context.
You can customizing it thanks to the AUDIO tag though. Ex:
.page audio { background: var(--theme-accent-color); }
In a more reliable way (that would work for all major browsers), only with JS.
What do you think?