change color of svg image css code example
Example 1: change svg color
filter: invert(100%) sepia(0%) saturate(7443%) hue-rotate(198deg) brightness(126%) contrast(112%);
Example 2: how to change svg image color on hover using css
svg { width: 100px; height: 100px;}svg:hover path { fill: red;}