通用部分
背景色
<rect
width="100%"
height="100%"
fill="#00000000"/>
fill="#00000000" 颜色透明 00000000
外层双圆环
<circle
cx="256"
cy="256"
r="240"
fill="none"
stroke="#4dabf7"
stroke-width="8"/>
<circle
cx="256"
cy="256"
r="190"
fill="none"
stroke="#4dabf7"
stroke-width="8"/>
cx="256" x轴长度cy="256" y轴长度 r="190" 半径大小 stroke="#4dabf7" 图形边框颜色 stroke-width="8"图形边框宽度
大实心圆
<circle
cx="256"
cy="256"
r="180"
fill="#4dabf7"/>
fill="#4dabf7" 实心圆背景色
各个logo细节
开源人
<!--眼睛-->
<ellipse
cx="256"
cy="190"
rx="100"
ry="30"
fill="#ffffff"/>
<!--鼻子上边-->
<ellipse
cx="256"
cy="270"
rx="30"
ry="35"
fill="#ffffff"/>
<!--鼻子圆点-->
<circle
cx="256"
cy="260"
r="10"
fill="#4dabf7"/>
<!--鼻子下边-->
<ellipse
cx="256"
cy="290"
rx="70"
ry="20"
fill="#ffffff"/>
<!--嘴-->
<ellipse
cx="256"
cy="350"
rx="50"
ry="20"
fill="#ffffff"/>
<defs>
<path
id="arcPath"
d="M 32 380 A 940 500 0 0 1 480 380" fill="none"/>
</defs>
<text
font-family="Arial"
font-size="110"
font-weight="bold"
fill="rgba(255,255,255,0.8)">
<textPath
href="#arcPath"
startOffset="50%"
text-anchor="middle">open</textPath>
</text>
软件人
<!--长方形-->
<rect
x="231"
y="170"
width="50"
height="150"
rx="8"
ry="8"
fill="#ffffff"/>
<!-- 三角形-->
<path
d="M 256,376
L 230.5,342
A 6,6 0 0 1 236.5,336
L 275.5,336
A 6,6 0 0 1 281.5,342
L 256,376
A 6,6 0 0 1 256,376 Z"
fill="#ffffff"/>
软件学
<!-- 头部 -->
<circle
cx="256"
cy="220"
r="40"
fill="#ffffff"/>
<ellipse
cx="242"
cy="212"
rx="6"
ry="5"
fill="#38d9a9"/>
<ellipse
cx="270"
cy="212"
rx="6"
ry="5"
fill="#38d9a9"/>
<path
d="M 246,230 Q 256,235 266,230"
fill="none"
stroke="#38d9a9"
stroke-width="3"
stroke-linecap="round"/>
<!-- 身体:430 底部位置 6 圆弧大小 0直线 -->
<path
d="M 216,310
A 40,40 0 0 1 296,310
L 296,430
A 40,6 0 0 1 216,43 Z"
fill="#ffffff"/>
如果你想要一个自己的logo,或者头像,可以自己动手编写咯。