/* https://grabient.com/_gLrgH7gEngEEgDEgDUgOSgP-gRLgKmgKPgJY?style=angularGradient&steps=8&angle=135 */
background: conic-gradient(from 135deg, #a2651f 0.000deg, #d6914e 51.429deg, #fcb17a 102.857deg, #fbab7c 154.286deg, #d38553 205.714deg, #9e5c23 257.143deg, #7e5017 308.571deg, #876b3a 360.000deg);
<svg width="800" height="400" viewBox="0 0 800 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- https://grabient.com/_gLrgH7gEngEEgDEgDUgOSgP-gRLgKmgKPgJY?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(162, 101, 31, 1) 0.000000deg,rgba(214, 145, 78, 1) 51.428571deg,rgba(252, 177, 122, 1) 102.857143deg,rgba(251, 171, 124, 1) 154.285714deg,rgba(211, 133, 83, 1) 205.714286deg,rgba(158, 92, 35, 1) 257.142857deg,rgba(126, 80, 23, 1) 308.571429deg,rgba(135, 107, 58, 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.6352941176470588,"g":0.396078431372549,"b":0.12156862745098039,"a":1},"position":0},{"color":{"r":0.8392156862745098,"g":0.5686274509803921,"b":0.3058823529411765,"a":1},"position":0.14285714285714285},{"color":{"r":0.9882352941176471,"g":0.6941176470588235,"b":0.47843137254901963,"a":1},"position":0.2857142857142857},{"color":{"r":0.984313725490196,"g":0.6705882352941176,"b":0.48627450980392156,"a":1},"position":0.42857142857142855},{"color":{"r":0.8274509803921568,"g":0.5215686274509804,"b":0.3254901960784314,"a":1},"position":0.5714285714285714},{"color":{"r":0.6196078431372549,"g":0.3607843137254902,"b":0.13725490196078433,"a":1},"position":0.7142857142857143},{"color":{"r":0.49411764705882355,"g":0.3137254901960784,"b":0.09019607843137255,"a":1},"position":0.8571428571428571},{"color":{"r":0.5294117647058824,"g":0.4196078431372549,"b":0.22745098039215686,"a":1},"position":1}],"stopsVar":[{"color":{"r":0.6352941176470588,"g":0.396078431372549,"b":0.12156862745098039,"a":1},"position":0},{"color":{"r":0.8392156862745098,"g":0.5686274509803921,"b":0.3058823529411765,"a":1},"position":0.14285714285714285},{"color":{"r":0.9882352941176471,"g":0.6941176470588235,"b":0.47843137254901963,"a":1},"position":0.2857142857142857},{"color":{"r":0.984313725490196,"g":0.6705882352941176,"b":0.48627450980392156,"a":1},"position":0.42857142857142855},{"color":{"r":0.8274509803921568,"g":0.5215686274509804,"b":0.3254901960784314,"a":1},"position":0.5714285714285714},{"color":{"r":0.6196078431372549,"g":0.3607843137254902,"b":0.13725490196078433,"a":1},"position":0.7142857142857143},{"color":{"r":0.49411764705882355,"g":0.3137254901960784,"b":0.09019607843137255,"a":1},"position":0.8571428571428571},{"color":{"r":0.5294117647058824,"g":0.4196078431372549,"b":0.22745098039215686,"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>
["#a2651f", "#d6914e", "#fcb17a", "#fbab7c", "#d38553", "#9e5c23", "#7e5017", "#876b3a"]
// https://grabient.com/_gLrgH7gEngEEgDEgDUgOSgP-gRLgKmgKPgJY?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.747, 0.507, 0.295);
vec3 b = vec3(0.260, 0.196, 0.212);
vec3 c = vec3(0.914, 1.022, 1.099);
vec3 d = vec3(0.678, 0.655, 0.600);
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.747, 0.507, 0.295],
[0.260, 0.196, 0.212],
[0.914, 1.022, 1.099],
[0.678, 0.655, 0.600]
]