How to modify the color of svg pictures by modifying the source code

Here is a picture of svg, as follows:

The code of the original svg (opened in the IDE) is as follows: 

The svg code is as follows:

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
        "http://www.w3.org/xxx/SVG/1.1/DTD/xxx.dtd">
<svg t="xxx" class="icon" viewBox="xxx xxx xxx xxx" version="1.1" xmlns="http://www.w3.org/xxx/xxxx"
     p-id="xxx" xmlns:xlink="http://www.w3.org/xxx/xxx" width="333.3984375" height="200" fill="#c3e40a" color="#c3e40a">
    <path d="M122.869341 2.22352 851.98782 0 1584.920784 6.5432.474237 6.472488 ... 1.84545341 3.22352L122.869341 2.786Q"
          p-id="xxx"></path>
</svg>

 To change the background color of the svg picture, just modify the fill in the above code

Guess you like

Origin blog.csdn.net/zhoupenghui168/article/details/132210352