Gradient Generator
Linear, radial and conic gradients with editable stops, live CSS, SVG and PNG export.
#FFFFFF0%
#E4E4E7100%
CSS
background: radial-gradient(circle at center, #ffffff 0%, #e4e4e7 100%);
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400"><defs><radialGradient id="g-radial"><stop offset="0%" stop-color="#ffffff"/><stop offset="100%" stop-color="#e4e4e7"/></radialGradient></defs><rect width="800" height="400" fill="url(#g-radial)"/></svg>