The image in example 17 doesn't match the CSS used to create it.
- the order of colors in the conic gradient is reversed
- the radial gradient will not be transparent at the edge of the circle; the radius is based on the diagonal of the box, so it's about 106px, not 75px.
To match the image, change the background property in the CSS to:
background: radial-gradient(gray, transparent 70.7%),
conic-gradient(red, magenta, blue, aqua, lime, yellow, red);