Is it possible to set a transparency or alpha level on SVG fill colours?
I\'ve tried adding two values to the fill tag (changing it from fill=\"#044B94\"
fill=\"#044B94\"
Use attribute fill-opacity in your element of SVG.
fill-opacity
Default value is 1, minimum is 0, in step use decimal values EX: 0.5 = 50% of alpha. Note: It is necessary to define fill color to apply fill-opacity.
fill
See my example.
References.