Is there a way to change the background color of an image tag within an SVG? I currently have a transparent image loaded in the image tag, but I would like to add a colored shade using a color picker.
<svg width="200" height="200"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<image xlink:href="https://mdn.mozillademos.org/files/6457/mdn_logo_only_color.png" height="200" width="200"/>
</svg>
The background color of the SVG is changing, however, it is not achieving my desired effect. I want to directly apply a color to the image tag itself.