Change Color of SVG on Hover

We can overwrite SVG fill color via CSS like below and also target different elements like <path> polygon circle etc.

svg:hover {
    fill: #fce57e;
}

svg:hover path {
    fill: #fce57e;
}

svg:hover plygon {
    fill: #fce57e;
}

svg:hover circle {
    fill: #fce57e;
}

Leave a comment

Your email address will not be published. Required fields are marked *