I've got a svg
tick.svg:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px" viewBox="0 0 200 200"><circle cx="150" cy="150" r="40" stroke="#000" fill="none" stroke-width="6" class="tickCol" stroke-linecap="round></svg>
And I use it as
#checkBox{
background: url('tick.svg') 50% 50% no-repeat #000;
}
I need to change the stroke color using css. I tried the below but no luck. How do I change the stroke
color in css?
.tickCol{
stroke: #f60;
}