Template Node / path

Hi and good evening,
the template-Node below contains two figures:

<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" 
		width="350" height="400"  xml:space="preserve" id="OG">
     <g>
            <rect fill="rgb(249, 0, 0)" x="80" y="200" width="75" height="75" rx="2" />
     </g>
     <g>
            <path fill="rgb(0, 249, 0)"  d="M 125 0  L 75 100  L 175 100  Z" />					
     </g>
</svg>

While NodeRed colours the rectangle correctly red, the path is drawn with the Base Setting Colout of the dashboard. A similar html-example in chrome is working as expectedt (rectangle = red , path = green).
What's the reason and how to overcome the issue?.
Thanks a lot

because the Node-RED style set the css of the path.
In the site settings you can set the template to use the default angular style if you wish
image

great; thank you so much!