Convert text to SVG paths quickly and easily

Back

Holographic

Holographic gradient effect

Holographic
<svg viewBox="0 0 600 120">
    <defs>
        <linearGradient id="holo" x1="0" x2="1">
            <stop offset="0" stop-color="#ff6b6b"/>
            <stop offset="0.33" stop-color="#ffd166"/>
            <stop offset="0.66" stop-color="#7ad0ff"/>
            <stop offset="1" stop-color="#b38bff"/>
        </linearGradient>
    </defs>
    <rect width="100%" height="100%" fill="#ffffff"/>
    <text x="50%" y="55%" font-size="44" text-anchor="middle" fill="url(#holo)">Holographic</text>
</svg>