I'm trying to change the SVG fill color to white, then on :hover change it to a different color, i've tried fill:; with no luck.
header nav ul li a.settings{
background-color: #5bd999;
background-image: url("../img/entypo/cog.svg");
fill:white;
}
header nav ul li a.settings:hover{
fill: red;
}