Colour to colour · generated
Sienna to Denim gradient
Sienna (#a0522d) into Denim (#1560bd) — 148° apart on the OKLCH hue wheel. Below: the same two stops interpolated in OKLab and in OKLCH, side by side, because the difference is real and most generators never let you see it; then an eased version and a mesh, each with the worst-case contrast for white and black text. The engine's own pick for this pair is oklch: ΔH 148° > 140° — interpolating in oklch (shorter hue) keeps the midpoint saturated.
OKLab and OKLCH, side by side
OKLab
Open in maker →A straight line through the a/b plane: the two hues meet halfway and desaturate a little at the midpoint. The safe default — it is what CSS and Tailwind default to.
linear-gradient(135deg in oklab, #a0522d 0%, #1560bd 100%)
OKLCH (shorter hue)
Open in maker →Chroma and hue interpolate separately, so the midpoint keeps its saturation and the hue travels the short way round the wheel — richer, and it can pass through hues neither colour has.
linear-gradient(135deg in oklch shorter hue, #a0522d 0%, #1560bd 100%)
And the sRGB line most tools draw, for comparison — the number is the chroma that survives at the dullest point.
Eased and mesh
Eased (soft)
Open in maker →A cubic-bezier(.4, 0, .6, 1) mix ratio baked into 15 stops: the transition lingers on each colour and moves faster through the middle, which is what makes a gradient read as designed rather than default.
linear-gradient(135deg in oklch shorter hue, #a0522d 0%, #a15130 8.28%, #a24e37 16.03%, #a44a42 23.35%, #a44651 30.32%, #a24463 37.03%, #9c4377 43.56%, #92448b 50%, #84489e 56.44%, #744dac 62.97%, #6052b6 69.68%, #4c57bc 76.65%, #365cbd 83.97%, #215fbd 91.72%, #1560bd 100%)
Mesh
Open in maker →Both colours as stacked radials over a base, laid out by a seeded Poisson-disc sampler — the same seed gives the same mesh forever. Exports as CSS, SVG and PNG.
background-color: #6b617d; background-image: radial-gradient(circle farthest-corner at 26.03% 11.17%, rgba(21, 96, 189, 0.769) 0%, rgba(21, 96, 189, 0) 46.66%), radial-gradient(circle farthest-corner at 29.58% 74.45%, rgba(160, 82, 45, 0.826) 0%, rgba(160, 82, 45, 0) 59.17%); background-image: radial-gradient(circle farthest-corner at 26.03% 11.17%, oklch(from #1560bd l c h / 0.7688) 0%, rgb(from #1560bd r g b / 0) 46.66%), radial-gradient(circle farthest-corner at 29.58% 74.45%, oklch(from #a0522d l c h / 0.826) 0%, rgb(from #a0522d r g b / 0) 59.17%);
Report
- white ink: worst 5.61:1 at 1% (AA); black ink: worst 3.37:1 at 74% (AA-large only) → use white text.
- Banding high: ~10px bands at 1440px — add grain 21 (≈2% soft-light noise) or shorten the ramp.
Export
.gradient {
background-image: linear-gradient(135deg, #a0522d 0%, #a34d3a 7.14%, #a44947 14.29%, #a44654 21.43%, #a24462 28.57%, #9e4370 35.71%, #99437e 42.86%, #92448b 50%, #894798 57.14%, #7f49a3 64.29%, #734dad 71.43%, #6451b5 78.57%, #5356ba 85.71%, #3c5bbd 92.86%, #1560bd 100%);
background-image: linear-gradient(135deg in oklch shorter hue, #a0522d 0%, #1560bd 100%);
}bg-linear-to-br/oklch from-[#a0522d] to-[#1560bd]
<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="600" viewBox="0 0 1440 600"><defs><linearGradient id="bs-gradient" gradientUnits="userSpaceOnUse" x1="210" y1="-210" x2="1230" y2="810"><stop offset="0%" stop-color="#a0522d"/><stop offset="7.14%" stop-color="#a34d3a"/><stop offset="14.29%" stop-color="#a44947"/><stop offset="21.43%" stop-color="#a44654"/><stop offset="28.57%" stop-color="#a24462"/><stop offset="35.71%" stop-color="#9e4370"/><stop offset="42.86%" stop-color="#99437e"/><stop offset="50%" stop-color="#92448b"/><stop offset="57.14%" stop-color="#894798"/><stop offset="64.29%" stop-color="#7f49a3"/><stop offset="71.43%" stop-color="#734dad"/><stop offset="78.57%" stop-color="#6451b5"/><stop offset="85.71%" stop-color="#5356ba"/><stop offset="92.86%" stop-color="#3c5bbd"/><stop offset="100%" stop-color="#1560bd"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
{
"sienna-to-denim": {
"$type": "gradient",
"$value": [
{
"color": {
"colorSpace": "srgb",
"components": [
0.627,
0.322,
0.176
],
"hex": "#a0522d"
},
"position": 0
},
{
"color": {
"colorSpace": "srgb",
"components": [
0.082,
0.376,
0.741
],
"hex": "#1560bd"
},
"position": 1
}
],
"$extensions": {
"com.brandsweets": {
"kind": "linear",
"css": "linear-gradient(135deg in oklch shorter hue, #a0522d 0%, #1560bd 100%)",
"interpolation": "oklch",
"hue": "shorter",
"angle": 135,
"name": "sienna-to-denim",
"contrast": {
"white": {
"ratio": 5.613,
"at": 0.0068,
"passesAA": true,
"passesAALarge": true
},
"black": {
"ratio": 3.367,
"at": 0.7428,
"passesAA": false,
"passesAALarge": true
},
"suggestedInk": "#ffffff"
}
}
},
"$description": "Sienna to Denim, interpolated in oklch."
}
}More from Sienna
Point any MCP client at the shared gradients endpoint and your agent gets the same engine as this page — make_gradient returns CSS with the interpolation space, Tailwind v4, SVG, a PNG URL, a DTCG token and the contrast report in one call; brand_gradients derives the whole contact sheet from a brand or a palette. Read-only, no key. Every gradient is a /gradients/new/… link: open it, refine, paste it back.
https://mcp.brandsweets.com/gradients/mcpclaude mcp add --transport http brandsweets-gradients https://mcp.brandsweets.com/gradients/mcp
›make a sienna to denim hero gradient in oklch that passes AA for white text, with grain if it bands
Want the agent to remember your picks and write them into a living brand? Create a free BrandSweets workspace.
Machine-readable: gradients.md