帮我设计一个珠光粉企业的logo希望主题偏工业风logo设计使用深邃的三色渐变。请用svg代码表示
以下是一个基于您的要求设计的珠光粉企业Logo的SVG代码示例:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<defs>
<linearGradient id="gradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#4A5568" />
<stop offset="50%" stop-color="#718096" />
<stop offset="100%" stop-color="#CBD5E0" />
</linearGradient>
</defs>
<circle cx="100" cy="100" r="90" fill="url(#gradient)" />
<rect x="75" y="85" width="50" height="30" rx="5" ry="5" fill="#2D3748" />
<line x1="40" y1="120" x2="160" y2="120" stroke="#2D3748" stroke-width="5" />
<line x1="40" y1="134" x2="160" y2="134" stroke="#2D3748" stroke-width="5" />
<line x1="40" y1="148" x2="160" y2="148" stroke="#2D3748" stroke-width="5" />
</svg>
请将以上代码复制到任何支持SVG格式的编辑器或浏览器中以查看Logo设计的效果。该设计包括一个使用深邃的三色渐变填充的圆形作为背景,并添加了一个工业风格的矩形和三条水平线。
请注意,这只是一个基本示例,您可以根据需要进行修改和调整
原文地址: https://www.cveoy.top/t/topic/iU0m 著作权归作者所有。请勿转载和采集!