/* https://grabient.com/_gN5gNGhHjgBdgBBg74gbfgMsgBkgF5gGTgGr?style=angularGradient&steps=7&angle=135 */
background: conic-gradient(from 135deg, #d2c8ff 0.000deg, #d7c6fb 60.000deg, #facedd 120.000deg, #e2dcc9 180.000deg, #cce5bf 240.000deg, #f0e4c1 300.000deg, #f2d9cd 360.000deg);
<svg width="800" height="400" viewBox="0 0 800 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- https://grabient.com/_gN5gNGhHjgBdgBBg74gbfgMsgBkgF5gGTgGr?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(210, 200, 255, 1) 0.000000deg,rgba(215, 198, 251, 1) 60.000000deg,rgba(250, 206, 221, 1) 120.000000deg,rgba(226, 220, 201, 1) 180.000000deg,rgba(204, 229, 191, 1) 240.000000deg,rgba(240, 228, 193, 1) 300.000000deg,rgba(242, 217, 205, 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.8235294117647058,"g":0.7843137254901961,"b":1,"a":1},"position":0},{"color":{"r":0.8431372549019608,"g":0.7764705882352941,"b":0.984313725490196,"a":1},"position":0.16666666666666666},{"color":{"r":0.9803921568627451,"g":0.807843137254902,"b":0.8666666666666667,"a":1},"position":0.3333333333333333},{"color":{"r":0.8862745098039215,"g":0.8627450980392157,"b":0.788235294117647,"a":1},"position":0.5},{"color":{"r":0.8,"g":0.8980392156862745,"b":0.7490196078431373,"a":1},"position":0.6666666666666666},{"color":{"r":0.9411764705882353,"g":0.8941176470588236,"b":0.7568627450980392,"a":1},"position":0.8333333333333334},{"color":{"r":0.9490196078431372,"g":0.8509803921568627,"b":0.803921568627451,"a":1},"position":1}],"stopsVar":[{"color":{"r":0.8235294117647058,"g":0.7843137254901961,"b":1,"a":1},"position":0},{"color":{"r":0.8431372549019608,"g":0.7764705882352941,"b":0.984313725490196,"a":1},"position":0.16666666666666666},{"color":{"r":0.9803921568627451,"g":0.807843137254902,"b":0.8666666666666667,"a":1},"position":0.3333333333333333},{"color":{"r":0.8862745098039215,"g":0.8627450980392157,"b":0.788235294117647,"a":1},"position":0.5},{"color":{"r":0.8,"g":0.8980392156862745,"b":0.7490196078431373,"a":1},"position":0.6666666666666666},{"color":{"r":0.9411764705882353,"g":0.8941176470588236,"b":0.7568627450980392,"a":1},"position":0.8333333333333334},{"color":{"r":0.9490196078431372,"g":0.8509803921568627,"b":0.803921568627451,"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>
["#d2c8ff", "#d7c6fb", "#facedd", "#e2dcc9", "#cce5bf", "#f0e4c1", "#f2d9cd"]
// https://grabient.com/_gN5gNGhHjgBdgBBg74gbfgMsgBkgF5gGTgGr?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.889, 0.838, 4.579);
vec3 b = vec3(0.093, 0.065, 3.832);
vec3 c = vec3(1.759, 0.812, 0.100);
vec3 d = vec3(0.377, 0.403, 0.427);
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.889, 0.838, 4.579],
[0.093, 0.065, 3.832],
[1.759, 0.812, 0.100],
[0.377, 0.403, 0.427]
]