/* https://grabient.com/_gMygcCgMCgBFgOsgA7gU-gBjgbSgJogHbgDG?style=angularGradient&steps=8&angle=135 */
background: conic-gradient(from 135deg, #c3ddc9 0.000deg, #d7dab6 51.429deg, #e2dabf 102.857deg, #d7dbd3 154.286deg, #c4dec9 205.714deg, #c1e4b6 257.143deg, #d2ebbf 308.571deg, #e2f3d2 360.000deg);
<svg width="800" height="400" viewBox="0 0 800 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- https://grabient.com/_gMygcCgMCgBFgOsgA7gU-gBjgbSgJogHbgDG?style=angularGradient&steps=8&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(195, 221, 201, 1) 0.000000deg,rgba(215, 218, 182, 1) 51.428571deg,rgba(226, 218, 191, 1) 102.857143deg,rgba(215, 219, 211, 1) 154.285714deg,rgba(196, 222, 201, 1) 205.714286deg,rgba(193, 228, 182, 1) 257.142857deg,rgba(210, 235, 191, 1) 308.571429deg,rgba(226, 243, 210, 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.7647058823529411,"g":0.8666666666666667,"b":0.788235294117647,"a":1},"position":0},{"color":{"r":0.8431372549019608,"g":0.8549019607843137,"b":0.7137254901960784,"a":1},"position":0.14285714285714285},{"color":{"r":0.8862745098039215,"g":0.8549019607843137,"b":0.7490196078431373,"a":1},"position":0.2857142857142857},{"color":{"r":0.8431372549019608,"g":0.8588235294117647,"b":0.8274509803921568,"a":1},"position":0.42857142857142855},{"color":{"r":0.7686274509803922,"g":0.8705882352941177,"b":0.788235294117647,"a":1},"position":0.5714285714285714},{"color":{"r":0.7568627450980392,"g":0.8941176470588236,"b":0.7137254901960784,"a":1},"position":0.7142857142857143},{"color":{"r":0.8235294117647058,"g":0.9215686274509803,"b":0.7490196078431373,"a":1},"position":0.8571428571428571},{"color":{"r":0.8862745098039215,"g":0.9529411764705882,"b":0.8235294117647058,"a":1},"position":1}],"stopsVar":[{"color":{"r":0.7647058823529411,"g":0.8666666666666667,"b":0.788235294117647,"a":1},"position":0},{"color":{"r":0.8431372549019608,"g":0.8549019607843137,"b":0.7137254901960784,"a":1},"position":0.14285714285714285},{"color":{"r":0.8862745098039215,"g":0.8549019607843137,"b":0.7490196078431373,"a":1},"position":0.2857142857142857},{"color":{"r":0.8431372549019608,"g":0.8588235294117647,"b":0.8274509803921568,"a":1},"position":0.42857142857142855},{"color":{"r":0.7686274509803922,"g":0.8705882352941177,"b":0.788235294117647,"a":1},"position":0.5714285714285714},{"color":{"r":0.7568627450980392,"g":0.8941176470588236,"b":0.7137254901960784,"a":1},"position":0.7142857142857143},{"color":{"r":0.8235294117647058,"g":0.9215686274509803,"b":0.7490196078431373,"a":1},"position":0.8571428571428571},{"color":{"r":0.8862745098039215,"g":0.9529411764705882,"b":0.8235294117647058,"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>
["#c3ddc9", "#d7dab6", "#e2dabf", "#d7dbd3", "#c4dec9", "#c1e4b6", "#d2ebbf", "#e2f3d2"]
// https://grabient.com/_gMygcCgMCgBFgOsgA7gU-gBjgbSgJogHbgDG?style=angularGradient&steps=8&angle=135
// cosine gradient palette — https://iquilezles.org/articles/palettes/
const float STEPS = 8.0;
const float ANGLE = 135.0;
vec3 palette(float t) {
vec3 a = vec3(0.818, 1.794, 0.770);
vec3 b = vec3(0.069, 0.940, 0.059);
vec3 c = vec3(1.342, 0.099, 1.746);
vec3 d = vec3(0.616, 0.475, 0.198);
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.818, 1.794, 0.770],
[0.069, 0.940, 0.059],
[1.342, 0.099, 1.746],
[0.616, 0.475, 0.198]
]