radial-gradient(closest-side at 70% 46%, #4E44BE 0%, #1B0D3A 100%) code example
Example 1: radial gradient css
background: radial-gradient(#e66465, #9198e5);
Example 2: radial gradient css
.gradient {
background-image:
radial-gradient(
circle,
yellow,
#f06d06
);
}