radialBasedSixPointGradient = {
const backgroundImageSource = `
<svg preserveAspectRatio="none" viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg'>
<defs>
<radialGradient id='g' >
<stop offset='0' stop-color='#fff' stop-opacity='1'/>
<stop offset='1' stop-color='#fff' stop-opacity='0'/>
</radialGradient>
<mask id='green'>
<circle cx='0' cy='0.5' r='0.6' fill='url(#g)'/>
</mask>
<mask id='orange'>
<circle cx='1' cy='0.3' r='1' fill='url(#g)'/>
</mask>
<mask id='pink'>
<circle cx='0.5' cy='0.7' r='0.4' fill='url(#g)'/>
</mask>
<mask id='purple'>
<circle cx='0.8' cy='1' r='1' fill='url(#g)'/>
</mask>
<mask id='yellow'>
<circle cx='0.2' cy='-0.5' r='1' fill='url(#g)'/>
</mask>
<mask id='white-1'>
<circle cx='-0.2' cy='1.2' r='1' fill='url(#g)'/>
</mask>
<mask id='white-2'>
<circle cx='0.3' cy='0.5' r='0.5' fill='url(#g)'/>
</mask>
<mask id='white-3'>
<circle cx='0.8' cy='-0.2' r='0.5' fill='url(#g)'/>
</mask>
</defs>
<rect x='0' y='0' width='1' height='1' fill='${green}' opacity="0.5" mask='url(#green)'/>
<rect x='0' y='0' width='1' height='1' fill='${orange}' opacity="0.6" mask='url(#orange)'/>
<rect x='0' y='0' width='1' height='1' fill='${pink}' opacity="0.5" mask='url(#pink)'/>
<rect x='0' y='0' width='1' height='1' fill='${purple}' opacity="0.5" mask='url(#purple)'/>
<rect x='0' y='0' width='1' height='1' fill='${yellow}' opacity="0.5" mask='url(#yellow)'/>
<rect x='0' y='0' width='1' height='1' fill='${white}' opacity="0.5" mask='url(#white-1)'/>
<rect x='0' y='0' width='1' height='1' fill='${white}' opacity="0.3" mask='url(#white-2)'/>
<rect x='0' y='0' width='1' height='1' fill='${white}' opacity="0.75" mask='url(#white-3)'/>
</svg>
`
return testDiv(backgroundImageSource)
}