change color of svg image -css code example
Example 1: how to change svg image color on hover using css
svg { width: 100px; height: 100px;}svg:hover path { fill: red;}
Example 2: change svg color
<svg width="96px" height="96px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<path id="time-3-icon" .../>
</svg>
SVG are XML document so just add a style="fill:red"
on the SVG tag when you open the file
<image class="my-svg-alternate" width="96" height="96" src="ppngfallback.png" />