当然可以
这是claude生成的svg
<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"> <style> .main-blue { fill: #1565C0; } .light-blue { fill: #42A5F5; } .accent { fill: #E3F2FD; } .box-shadow { fill: #0D47A1; } .text { fill: white; font-family: Arial, sans-serif; font-weight: bold; } </style> <!-- 工具盒底部阴影 --> <rect class="box-shadow" x="50" y="150" width="200" height="95" rx="10" ry="10" /> <!-- 工具盒主体 --> <rect class="main-blue" x="40" y="140" width="200" height="95" rx="10" ry="10" /> <!-- 工具盒上盖 --> <path class="light-blue" d="M40,140 L40,120 C40,114.5 44.5,110 50,110 L230,110 C235.5,110 240,114.5 240,120 L240,140 Z" /> <!-- 装饰线条 --> <rect class="accent" x="60" y="160" width="160" height="5" rx="2" ry="2" /> <rect class="accent" x="60" y="180" width="160" height="5" rx="2" ry="2" /> <rect class="accent" x="60" y="200" width="160" height="5" rx="2" ry="2" /> <!-- 半圆形提手 --> <path class="main-blue" d="M140,110 L140,80 C140,69 151,60 165,60 C179,60 190,69 190,80 L190,110" /> <circle class="light-blue" cx="140" cy="110" r="8" /> <circle class="light-blue" cx="190" cy="110" r="8" /> <!-- AI图标 --> <circle class="accent" cx="160" cy="85" r="20" /> <path class="main-blue" d="M150,80 L152,90 L157,90 L159,80 M158,95 L158,80 M163,80 L163,95 M163,87 L168,87" /> <!-- 文字 "AI TOOLKIT" --> <text class="text" x="150" y="225" font-size="18" text-anchor="middle">AI TOOLKIT</text> </svg>
网友回复