Convert text to SVG paths quickly and easily

Back

Gold Metallic

Gold metallic effect with gradient highlights

Gold
<svg viewBox="0 0 600 120">
    <defs>
        <linearGradient id="gold" x1="0" x2="1">
            <stop offset="0" stop-color="#d4af37"/>
            <stop offset="0.5" stop-color="#fff7c2"/>
            <stop offset="1" stop-color="#d4af37"/>
        </linearGradient>
    </defs>
    <rect width="100%" height="100%" fill="#ffffff"/>
    <text x="50%" y="55%" text-anchor="middle" font-size="44" fill="url(#gold)" font-family="Georgia, serif">Gold</text>
</svg>