/* https://grabient.com/_gFxfjsgD1gCMghlgAegMlgBmggKgHQgO1gES?style=angularGradient&steps=8&angle=225 */
background: conic-gradient(from 225deg, #3b3a3d 0.000deg, #3f4838 51.429deg, #525143 102.857deg, #6b5543 154.286deg, #7e5537 205.714deg, #81513e 257.143deg, #724846 308.571deg, #5a3a3b 360.000deg);
<svg width="800" height="400" viewBox="0 0 800 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- https://grabient.com/_gFxfjsgD1gCMghlgAegMlgBmggKgHQgO1gES?style=angularGradient&steps=8&angle=225 -->
<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(59, 58, 61, 1) 0.000000deg,rgba(63, 72, 56, 1) 51.428571deg,rgba(82, 81, 67, 1) 102.857143deg,rgba(107, 85, 67, 1) 154.285714deg,rgba(126, 85, 55, 1) 205.714286deg,rgba(129, 81, 62, 1) 257.142857deg,rgba(114, 72, 70, 1) 308.571429deg,rgba(90, 58, 59, 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.23137254901960785,"g":0.22745098039215686,"b":0.23921568627450981,"a":1},"position":0},{"color":{"r":0.24705882352941178,"g":0.2823529411764706,"b":0.2196078431372549,"a":1},"position":0.14285714285714285},{"color":{"r":0.3215686274509804,"g":0.3176470588235294,"b":0.2627450980392157,"a":1},"position":0.2857142857142857},{"color":{"r":0.4196078431372549,"g":0.3333333333333333,"b":0.2627450980392157,"a":1},"position":0.42857142857142855},{"color":{"r":0.49411764705882355,"g":0.3333333333333333,"b":0.21568627450980393,"a":1},"position":0.5714285714285714},{"color":{"r":0.5058823529411764,"g":0.3176470588235294,"b":0.24313725490196078,"a":1},"position":0.7142857142857143},{"color":{"r":0.4470588235294118,"g":0.2823529411764706,"b":0.27450980392156865,"a":1},"position":0.8571428571428571},{"color":{"r":0.35294117647058826,"g":0.22745098039215686,"b":0.23137254901960785,"a":1},"position":1}],"stopsVar":[{"color":{"r":0.23137254901960785,"g":0.22745098039215686,"b":0.23921568627450981,"a":1},"position":0},{"color":{"r":0.24705882352941178,"g":0.2823529411764706,"b":0.2196078431372549,"a":1},"position":0.14285714285714285},{"color":{"r":0.3215686274509804,"g":0.3176470588235294,"b":0.2627450980392157,"a":1},"position":0.2857142857142857},{"color":{"r":0.4196078431372549,"g":0.3333333333333333,"b":0.2627450980392157,"a":1},"position":0.42857142857142855},{"color":{"r":0.49411764705882355,"g":0.3333333333333333,"b":0.21568627450980393,"a":1},"position":0.5714285714285714},{"color":{"r":0.5058823529411764,"g":0.3176470588235294,"b":0.24313725490196078,"a":1},"position":0.7142857142857143},{"color":{"r":0.4470588235294118,"g":0.2823529411764706,"b":0.27450980392156865,"a":1},"position":0.8571428571428571},{"color":{"r":0.35294117647058826,"g":0.22745098039215686,"b":0.23137254901960785,"a":1},"position":1}],"transform":{"m00":-565.685425,"m01":-565.685425,"m02":965.685425,"m10":565.685425,"m11":-565.685425,"m12":200.000000},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
<defs>
<clipPath id="paint0_angular_clip_path"><rect width="800" height="400"/></clipPath>
</defs>
</svg>
["#3b3a3d", "#3f4838", "#525143", "#6b5543", "#7e5537", "#81513e", "#724846", "#5a3a3b"]
// https://grabient.com/_gFxfjsgD1gCMghlgAegMlgBmggKgHQgO1gES?style=angularGradient&steps=8&angle=225
// cosine gradient palette — https://iquilezles.org/articles/palettes/
const float STEPS = 8.0;
const float ANGLE = 225.0;
vec3 palette(float t) {
vec3 a = vec3(0.369, -1.812, 0.245);
vec3 b = vec3(0.140, 2.149, 0.030);
vec3 c = vec3(0.805, 0.102, 2.058);
vec3 d = vec3(0.464, 0.949, 0.274);
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.369, -1.812, 0.245],
[0.140, 2.149, 0.030],
[0.805, 0.102, 2.058],
[0.464, 0.949, 0.274]
]