/* https://grabient.com/_gAAgCngTtgAAgIYgUfgBhgBngBogAAgLFgJt?style=linearGradient&steps=5&angle=180 */
background: linear-gradient(180deg, #00084f 0.000%, #001e78 25.000%, #0034a6 50.000%, #0049d8 75.000%, #005eff 100.000%);
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400" preserveAspectRatio="none">
<!-- https://grabient.com/_gAAgCngTtgAAgIYgUfgBhgBngBogAAgLFgJt?style=linearGradient&steps=5&angle=180 -->
<defs>
<linearGradient id="gradient" x1="0.500" y1="0.000" x2="0.500" y2="1.000">
<stop offset="0.000" stop-color="#00084f" /><stop offset="0.250" stop-color="#001e78" /><stop offset="0.500" stop-color="#0034a6" /><stop offset="0.750" stop-color="#0049d8" /><stop offset="1.000" stop-color="#005eff" />
</linearGradient>
</defs>
<rect x="0" y="0" width="800" height="400" fill="url(#gradient)" />
</svg>
["#00084f", "#001e78", "#0034a6", "#0049d8", "#005eff"]
// https://grabient.com/_gAAgCngTtgAAgIYgUfgBhgBngBogAAgLFgJt?style=linearGradient&steps=5&angle=180
// cosine gradient palette — https://iquilezles.org/articles/palettes/
const float STEPS = 5.0;
const float ANGLE = 180.0;
vec3 palette(float t) {
vec3 a = vec3(0.000, 0.167, 1.261);
vec3 b = vec3(0.000, 0.536, 1.311);
vec3 c = vec3(0.097, 0.103, 0.104);
vec3 d = vec3(0.000, 0.709, 0.621);
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;
// CSS angle: 0 = up, clockwise; span = CSS gradient-line length
vec2 dir = vec2(sin(radians(ANGLE)), cos(radians(ANGLE)));
float len = abs(iResolution.x * dir.x) + abs(iResolution.y * dir.y);
float t = dot(p, dir) / len + 0.5;
fragColor = vec4(stops(t), 1.0);
}
[
[0.000, 0.167, 1.261],
[0.000, 0.536, 1.311],
[0.097, 0.103, 0.104],
[0.000, 0.709, 0.621]
]