Example

by Sree K

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/color -->

<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg" version="1.1">
  <g color="green">
    <rect width="50" height="50" fill="currentColor" />
    <text x="10" y="25" fill="#c00">test</text>
    <circle r="25" cx="70" cy="70" stroke="currentColor" fill="none" stroke-width="5" />  
  </g>
</svg>