/* https://grabient.com/_gJ0gHlgDgf7Cf7YgHyf5kf7zgCwgVgf3ifxH?style=angularGradient&steps=5&angle=285 */
background: conic-gradient(from 285deg, #dac5b3 0.000deg, #acb6a4 90.000deg, #799d8d 180.000deg, #567f70 270.000deg, #515f4f 360.000deg);
<svg width="800" height="400" viewBox="0 0 800 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- https://grabient.com/_gJ0gHlgDgf7Cf7YgHyf5kf7zgCwgVgf3ifxH?style=angularGradient&steps=5&angle=285 -->
<g clip-path="url(#paint0_angular_clip_path)" data-figma-skip-parse="true"><g transform="matrix(-0.190802 -0.051125 0.051125 -0.190802 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(218, 197, 179, 1) 0.000000deg,rgba(172, 182, 164, 1) 90.000000deg,rgba(121, 157, 141, 1) 180.000000deg,rgba(86, 127, 112, 1) 270.000000deg,rgba(81, 95, 79, 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.8549019607843137,"g":0.7725490196078432,"b":0.7019607843137254,"a":1},"position":0},{"color":{"r":0.6745098039215687,"g":0.7137254901960784,"b":0.6431372549019608,"a":1},"position":0.25},{"color":{"r":0.4745098039215686,"g":0.615686274509804,"b":0.5529411764705883,"a":1},"position":0.5},{"color":{"r":0.33725490196078434,"g":0.4980392156862745,"b":0.4392156862745098,"a":1},"position":0.75},{"color":{"r":0.3176470588235294,"g":0.37254901960784315,"b":0.30980392156862746,"a":1},"position":1}],"stopsVar":[{"color":{"r":0.8549019607843137,"g":0.7725490196078432,"b":0.7019607843137254,"a":1},"position":0},{"color":{"r":0.6745098039215687,"g":0.7137254901960784,"b":0.6431372549019608,"a":1},"position":0.25},{"color":{"r":0.4745098039215686,"g":0.615686274509804,"b":0.5529411764705883,"a":1},"position":0.5},{"color":{"r":0.33725490196078434,"g":0.4980392156862745,"b":0.4392156862745098,"a":1},"position":0.75},{"color":{"r":0.3176470588235294,"g":0.37254901960784315,"b":0.30980392156862746,"a":1},"position":1}],"transform":{"m00":-772.740661,"m01":207.055236,"m02":682.842712,"m10":-207.055236,"m11":-772.740661,"m12":689.897949},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
<defs>
<clipPath id="paint0_angular_clip_path"><rect width="800" height="400"/></clipPath>
</defs>
</svg>
["#dac5b3", "#acb6a4", "#799d8d", "#567f70", "#515f4f"]
// https://grabient.com/_gJ0gHlgDgf7Cf7YgHyf5kf7zgCwgVgf3ifxH?style=angularGradient&steps=5&angle=285
// cosine gradient palette — https://iquilezles.org/articles/palettes/
const float STEPS = 5.0;
const float ANGLE = 285.0;
vec3 palette(float t) {
vec3 a = vec3(0.628, 0.485, 0.224);
vec3 b = vec3(-0.318, -0.296, 0.498);
vec3 c = vec3(-0.412, -0.269, 0.176);
vec3 d = vec3(1.376, -0.542, -0.953);
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.628, 0.485, 0.224],
[-0.318, -0.296, 0.498],
[-0.412, -0.269, 0.176],
[1.376, -0.542, -0.953]
]