/* https://grabient.com/_gOZgNsgNIgBLgA0gB_gKigfJgNagDvgJwgK4?style=radialGradient&steps=21&angle=225 */
background: radial-gradient(circle at 50% 50%, #ecd6cb 0.000%, #e8ddd4 5.000%, #e4e5dd 10.000%, #e1ebe5 15.000%, #ddedec 20.000%, #dbe9f2 25.000%, #d9e2f5 30.000%, #d8daf7 35.000%, #d8d4f6 40.000%, #d8d2f2 45.000%, #dad6ed 50.000%, #dcdde6 55.000%, #dfe5de 60.000%, #e2ebd5 65.000%, #e6edcd 70.000%, #eae9c5 75.000%, #eee2be 80.000%, #f2dab9 85.000%, #f6d4b6 90.000%, #f9d2b6 95.000%, #fbd6b8 100.000%);
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400" preserveAspectRatio="none">
<!-- https://grabient.com/_gOZgNsgNIgBLgA0gB_gKigfJgNagDvgJwgK4?style=radialGradient&steps=21&angle=225 -->
<defs>
<radialGradient id="radial" gradientUnits="userSpaceOnUse" cx="400.000" cy="200.000" r="447.214">
<stop offset="0.000" stop-color="#ecd6cb" /><stop offset="0.050" stop-color="#e8ddd4" /><stop offset="0.100" stop-color="#e4e5dd" /><stop offset="0.150" stop-color="#e1ebe5" /><stop offset="0.200" stop-color="#ddedec" /><stop offset="0.250" stop-color="#dbe9f2" /><stop offset="0.300" stop-color="#d9e2f5" /><stop offset="0.350" stop-color="#d8daf7" /><stop offset="0.400" stop-color="#d8d4f6" /><stop offset="0.450" stop-color="#d8d2f2" /><stop offset="0.500" stop-color="#dad6ed" /><stop offset="0.550" stop-color="#dcdde6" /><stop offset="0.600" stop-color="#dfe5de" /><stop offset="0.650" stop-color="#e2ebd5" /><stop offset="0.700" stop-color="#e6edcd" /><stop offset="0.750" stop-color="#eae9c5" /><stop offset="0.800" stop-color="#eee2be" /><stop offset="0.850" stop-color="#f2dab9" /><stop offset="0.900" stop-color="#f6d4b6" /><stop offset="0.950" stop-color="#f9d2b6" /><stop offset="1.000" stop-color="#fbd6b8" />
</radialGradient>
</defs>
<rect x="0" y="0" width="800" height="400" fill="url(#radial)" />
</svg>
["#ecd6cb", "#e8ddd4", "#e4e5dd", "#e1ebe5", "#ddedec", "#dbe9f2", "#d9e2f5", "#d8daf7", "#d8d4f6", "#d8d2f2", "#dad6ed", "#dcdde6", "#dfe5de", "#e2ebd5", "#e6edcd", "#eae9c5", "#eee2be", "#f2dab9", "#f6d4b6", "#f9d2b6", "#fbd6b8"]
// https://grabient.com/_gOZgNsgNIgBLgA0gB_gKigfJgNagDvgJwgK4?style=radialGradient&steps=21&angle=225
// cosine gradient palette — https://iquilezles.org/articles/palettes/
const float STEPS = 21.0;
vec3 palette(float t) {
vec3 a = vec3(0.921, 0.876, 0.840);
vec3 b = vec3(0.075, 0.052, 0.127);
vec3 c = vec3(0.674, 1.993, 0.858);
vec3 d = vec3(0.239, 0.624, 0.696);
return a + b * cos(6.283185 * (c * t + d));
}
// N stops sampled from the palette, blended like the CSS gradient
vec3 stops(float t) {
float n = STEPS - 1.0;
float x = clamp(t, 0.0, 1.0) * n;
return mix(palette(floor(x) / n), palette(min(floor(x) + 1.0, n) / n), fract(x));
}
void mainImage(out vec4 fragColor, in vec2 fragCoord) {
vec2 p = fragCoord - 0.5 * iResolution.xy;
// circle to the farthest corner (CSS default)
float t = length(p) / length(0.5 * iResolution.xy);
fragColor = vec4(stops(t), 1.0);
}
[
[0.921, 0.876, 0.840],
[0.075, 0.052, 0.127],
[0.674, 1.993, 0.858],
[0.239, 0.624, 0.696]
]