18 lines
765 B
XML
18 lines
765 B
XML
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- 绘制圆形 -->
|
|
<circle cx="100" cy="100" r="90" stroke="black" stroke-width="3" fill="${color}"/>
|
|
|
|
<!-- 绘制电视机 -->
|
|
<rect x="50" y="60" width="100" height="56.25" stroke="black" stroke-width="3" fill="${color}"/>
|
|
|
|
<!-- 绘制倒 A 形天线 -->
|
|
<polyline points="100,50 50,60 150,60" stroke="black" stroke-width="3" fill="${color}"/>
|
|
|
|
<!-- 绘制 Support O -->
|
|
<circle cx="100" cy="116.25" r="5" stroke="black" stroke-width="3" fill="${color}"/>
|
|
|
|
<!-- 绘制 Support e -->
|
|
<path d="M110 116.25 Q105 125 100 116.25" stroke="black" stroke-width="3" fill="${color}"/>
|
|
<path d="M90 116.25 Q95 125 100 116.25" stroke="black" stroke-width="3" fill="${color}"/>
|
|
</svg>
|