Is it possible to change the color of an SVG image, icon, or logo within an inline HTML <img> tag using style="..."?
Below is a snippet of my code featuring a button with a logo that I want to change the color of:
<a href="#" class="nav-link btn btn-outline-secondary d-flex border-0 w-100" style="color:#39384A;" data-toggle="tooltip" data-placement="right" title="Discord">
<img class="m-auto" src="https://www.svgrepo.com/show/353655/discord-icon.svg" style="color:#39384A;">
</a>
Currently, despite specifying a color in the style attribute, the color remains unchanged. How can I achieve the desired color change as shown?
I require an inline solution as I do not have access to edit the CSS sheet to modify specific tags and classes due to limited customization options on the website. Any help or advice would be greatly appreciated. Thank you!