11 lines
511 B
XML
11 lines
511 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
|
|
<defs>
|
|
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#D4A574"/>
|
|
<stop offset="100%" style="stop-color:#B8895A"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="100" cy="100" r="95" fill="url(#logoGradient)"/>
|
|
<text x="100" y="115" text-anchor="middle" font-size="48" font-weight="bold" fill="white" font-family="Arial">优艺家</text>
|
|
</svg>
|