I have an SVG image (World map) in my root folder and I'm adding it to my background of my website using css background-image: url(.....) . My issue is my SVG image has about 200 paths (each country in the world). I want to modify just specific colors of specific country. I'm loadin ti to my page doing
<link href="css/signin2.css" rel="stylesheet">
and
body {
display: flex;
align-items: center;
background-image: url("../resources/world-pacific.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}