I am facing 1 problem while assigning color to the background image. Basically the background image is hamburger menu.
If I assign the color as RGBA format then it's working fine in development environment. But when I build the application then it's automatically changes the color code in Hexa format.
I tried assigning hexa color code directly but its not working. Can some one please suggest a solution to this.
#keyword div {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(4,71,87,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")
}
<figure id="keyword">
<div></div>
</figure>
What I want is to assign stroke='##044757' instead of stroke='rgba(4,71,87,1)'