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;
}