Linear & radial SVG gradients.
<svg width="200" height="120" xmlns="http://www.w3.org/2000/svg">
<defs><linearGradient id="g" x1="100%" y1="50%" x2="0%" y2="50%">
<stop offset="0%" stop-color="#f43f5e" />
<stop offset="100%" stop-color="#a855f7" />
</linearGradient></defs>
<rect width="200" height="120" fill="url(#g)" />
</svg>