Is there a method to change the fill color of an SVG on hover within an object tag without inserting CSS code directly into the SVG file? Below is the code snippet:
<div class="icon-holder">
<object data="http://useaible.com/wp-content/themes/storefront/assets/images/icons/bulb-round.svg"></object>
</div>
I understand that CSS needs to be inside the SVG file for it to work properly. Are there alternative approaches to implementing a hover effect without resorting to inline SVG or adding CSS within the SVG file?