/* https://grabient.com/_gJogKtgK-gCAgBtgC2gQYgL-gPDgPsgNlgMC?style=angularGradient&steps=7&angle=135 */
background: conic-gradient(from 135deg, #bec2b9 0.000deg, #abcadd 60.000deg, #89c2da 120.000deg, #7daeb3 180.000deg, #949a8c 240.000deg, #b49389 300.000deg, #bc9cae 360.000deg);
<svg width="800" height="400" viewBox="0 0 800 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- https://grabient.com/_gJogKtgK-gCAgBtgC2gQYgL-gPDgPsgNlgMC?style=angularGradient&steps=7&angle=135 -->
<g clip-path="url(#paint0_angular_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0.139677 0.139677 -0.139677 0.139677 400.000000 200.000000)"><foreignObject x="-2264" y="-2264" width="4528" height="4528"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(190, 194, 185, 1) 0.000000deg,rgba(171, 202, 221, 1) 60.000000deg,rgba(137, 194, 218, 1) 120.000000deg,rgba(125, 174, 179, 1) 180.000000deg,rgba(148, 154, 140, 1) 240.000000deg,rgba(180, 147, 137, 1) 300.000000deg,rgba(188, 156, 174, 1) 360.000000deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><rect width="800" height="400" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.7450980392156863,"g":0.7607843137254902,"b":0.7254901960784313,"a":1},"position":0},{"color":{"r":0.6705882352941176,"g":0.792156862745098,"b":0.8666666666666667,"a":1},"position":0.16666666666666666},{"color":{"r":0.5372549019607843,"g":0.7607843137254902,"b":0.8549019607843137,"a":1},"position":0.3333333333333333},{"color":{"r":0.49019607843137253,"g":0.6823529411764706,"b":0.7019607843137254,"a":1},"position":0.5},{"color":{"r":0.5803921568627451,"g":0.6039215686274509,"b":0.5490196078431373,"a":1},"position":0.6666666666666666},{"color":{"r":0.7058823529411765,"g":0.5764705882352941,"b":0.5372549019607843,"a":1},"position":0.8333333333333334},{"color":{"r":0.7372549019607844,"g":0.611764705882353,"b":0.6823529411764706,"a":1},"position":1}],"stopsVar":[{"color":{"r":0.7450980392156863,"g":0.7607843137254902,"b":0.7254901960784313,"a":1},"position":0},{"color":{"r":0.6705882352941176,"g":0.792156862745098,"b":0.8666666666666667,"a":1},"position":0.16666666666666666},{"color":{"r":0.5372549019607843,"g":0.7607843137254902,"b":0.8549019607843137,"a":1},"position":0.3333333333333333},{"color":{"r":0.49019607843137253,"g":0.6823529411764706,"b":0.7019607843137254,"a":1},"position":0.5},{"color":{"r":0.5803921568627451,"g":0.6039215686274509,"b":0.5490196078431373,"a":1},"position":0.6666666666666666},{"color":{"r":0.7058823529411765,"g":0.5764705882352941,"b":0.5372549019607843,"a":1},"position":0.8333333333333334},{"color":{"r":0.7372549019607844,"g":0.611764705882353,"b":0.6823529411764706,"a":1},"position":1}],"transform":{"m00":565.685425,"m01":-565.685425,"m02":400.000000,"m10":565.685425,"m11":565.685425,"m12":-365.685425},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
<defs>
<clipPath id="paint0_angular_clip_path"><rect width="800" height="400"/></clipPath>
</defs>
</svg>
["#bec2b9", "#abcadd", "#89c2da", "#7daeb3", "#949a8c", "#b49389", "#bc9cae"]
// https://grabient.com/_gJogKtgK-gCAgBtgC2gQYgL-gPDgPsgNlgMC?style=angularGradient&steps=7&angle=135
// cosine gradient palette — https://iquilezles.org/articles/palettes/
const float STEPS = 7.0;
const float ANGLE = 135.0;
vec3 palette(float t) {
vec3 a = vec3(0.616, 0.685, 0.702);
vec3 b = vec3(0.128, 0.109, 0.182);
vec3 c = vec3(1.048, 0.766, 0.963);
vec3 d = vec3(1.004, 0.869, 0.770);
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;
// conic from ANGLE, clockwise from top (CSS convention)
float t = fract((atan(p.x, p.y) - radians(ANGLE)) / 6.283185);
fragColor = vec4(stops(t), 1.0);
}
[
[0.616, 0.685, 0.702],
[0.128, 0.109, 0.182],
[1.048, 0.766, 0.963],
[1.004, 0.869, 0.770]
]