I get my SVGs from thenounproject.com, however i cannot change their color as fill does nothing.
I am using Ruby on Rails, so I used <%= image_tag('#'), :class => "tomatoe" %>
and my css looks like this
.tomatoe{
@include transition-property(all);
@include transition-duration(1s);
fill: white;
width: 100px;
margin-top: 1em;
}
Fill never works, tried it on several SVGs but no luck and I have no clue why.