SVG - Color
Table of Contents
About
The color on a SVG is defined at two levels with two attributes:
- SVG - Stroke - the color along the outline of the object.
- fill - the color inside the object
Example
Via Svg attributes
<svg height="200">
<circle
cx="100"
cy="100"
r="80"
fill="red"
stroke="black"
stroke-width="40"/>
</svg>