18 lines
669 B
XML
18 lines
669 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<!-- 定义渐变 -->
|
|
<defs>
|
|
<linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
|
|
<stop offset="0%" stop-color="red" />
|
|
<stop offset="15%" stop-color="orange" />
|
|
<stop offset="30%" stop-color="yellow" />
|
|
<stop offset="45%" stop-color="green" />
|
|
<stop offset="60%" stop-color="blue" />
|
|
<stop offset="75%" stop-color="indigo" />
|
|
<stop offset="100%" stop-color="violet" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- 使用文本绘制字母 R -->
|
|
<text x="10" y="60" font-size="60" font-family="Arial" fill="url(#rainbowGradient)">R</text>
|
|
</svg>
|