This commit is contained in:
2026-04-13 15:13:48 +08:00
parent c73d94b83b
commit 54d3110d1a
6 changed files with 362 additions and 215 deletions
@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 22" width="20" height="14">
<!-- 红色背景 -->
<rect width="33" height="22" fill="#de2910"/>
<!-- 大五角星 -->
<polygon points="5,1 6.5,4.5 10,4.5 7.5,6.8 8.5,10.5 5,8 1.5,10.5 2.5,6.8 0,4.5 3.5,4.5" fill="#ffde00"/>
<!-- 四颗小五角星 -->
<polygon points="10,3 10.6,4.3 12,4.3 11,5.2 11.4,6.6 10,5.7 8.6,6.6 9,5.2 8,4.3 9.4,4.3" fill="#ffde00"/>
<polygon points="13,1 13.6,2.3 15,2.3 14,3.2 14.4,4.6 13,3.7 11.6,4.6 12,3.2 11,2.3 12.4,2.3" fill="#ffde00"/>
<polygon points="15,3 15.6,4.3 17,4.3 16,5.2 16.4,6.6 15,5.7 13.6,6.6 14,5.2 13,4.3 14.4,4.3" fill="#ffde00"/>
<polygon points="12.5,5 13.1,6.3 14.5,6.3 13.5,7.2 13.9,8.6 12.5,7.7 11.1,8.6 11.5,7.2 10.5,6.3 11.9,6.3" fill="#ffde00"/>
</svg>

After

Width:  |  Height:  |  Size: 785 B

@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 22" width="20" height="14">
<!-- 红色背景 -->
<rect width="33" height="22" fill="#de2910"/>
<!-- 白色条带 -->
<rect y="7" width="33" height="8" fill="#fff"/>
<!-- 紫荆花(简化版) -->
<g fill="#fff" transform="translate(6.6,11) scale(0.4)">
<ellipse cx="0" cy="-8" rx="4" ry="8" fill="#fff"/>
<ellipse cx="7.6" cy="-2.5" rx="4" ry="8" fill="#fff" transform="rotate(72)"/>
<ellipse cx="4.7" cy="6.5" rx="4" ry="8" fill="#fff" transform="rotate(144)"/>
<ellipse cx="-4.7" cy="6.5" rx="4" ry="8" fill="#fff" transform="rotate(216)"/>
<ellipse cx="-7.6" cy="-2.5" rx="4" ry="8" fill="#fff" transform="rotate(288)"/>
<!-- 花芯 -->
<circle cx="0" cy="0" r="3" fill="#ffdf00"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 799 B

@@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 22" width="20" height="14">
<!-- 绿色背景 -->
<rect width="33" height="22" fill="#009900"/>
<!-- 莲花(简化版) -->
<g fill="#fff" transform="translate(16.5,11)">
<ellipse cx="0" cy="-5" rx="2" ry="5"/>
<ellipse cx="-4" cy="-2" rx="2" ry="5" transform="rotate(-30)"/>
<ellipse cx="4" cy="-2" rx="2" ry="5" transform="rotate(30)"/>
<ellipse cx="-6" cy="2" rx="2" ry="5" transform="rotate(-60)"/>
<ellipse cx="6" cy="2" rx="2" ry="5" transform="rotate(60)"/>
<!-- 莲蓬 -->
<circle cx="0" cy="0" r="2.5" fill="#ffdf00"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 637 B

@@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 22" width="20" height="14">
<!-- 红色条纹 -->
<rect y="0" width="33" height="2.75" fill="#b22234"/>
<rect y="5.5" width="33" height="2.75" fill="#fff"/>
<rect y="8.25" width="33" height="2.75" fill="#b22234"/>
<rect y="11" width="33" height="2.75" fill="#fff"/>
<rect y="13.75" width="33" height="2.75" fill="#b22234"/>
<rect y="16.5" width="33" height="2.75" fill="#fff"/>
<rect y="19.25" width="33" height="2.75" fill="#b22234"/>
<!-- 蓝色矩形(左上角) -->
<rect width="13.2" height="8.25" fill="#3c3b6e"/>
<!-- 50颗白星(简化:画5x5网格白点) -->
<g fill="#fff">
<circle cx="2.2" cy="1.1" r="0.7"/>
<circle cx="6.6" cy="1.1" r="0.7"/>
<circle cx="2.2" cy="4.4" r="0.7"/>
<circle cx="6.6" cy="4.4" r="0.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 847 B