Colour to colour · generated
Light Sea Green to Hot Pink gradient
Light Sea Green (#20b2aa) into Hot Pink (#ff69b4) — 163° 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 163° > 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, #20b2aa 0%, #ff69b4 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, #20b2aa 0%, #ff69b4 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, #20b2aa 0%, #18b2ad 8.28%, #00b2b7 16.03%, #00b2c5 23.35%, #00afd7 30.32%, #2eabe9 37.03%, #58a3f9 43.56%, #7d9aff 50%, #9f8fff 56.44%, #bc84fa 62.97%, #d57beb 69.68%, #e873d8 76.65%, #f56dc6 83.97%, #fc6ab9 91.72%, #ff69b4 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: #b397af; background-image: radial-gradient(circle farthest-corner at 19.68% 88.31%, rgba(255, 105, 180, 0.883) 0%, rgba(255, 105, 180, 0) 56.82%), radial-gradient(circle farthest-corner at 42.45% 28.04%, rgba(32, 178, 170, 0.837) 0%, rgba(32, 178, 170, 0) 55.82%); background-image: radial-gradient(circle farthest-corner at 19.68% 88.31%, oklch(from #ff69b4 l c h / 0.8831) 0%, rgb(from #ff69b4 r g b / 0) 56.82%), radial-gradient(circle farthest-corner at 42.45% 28.04%, oklch(from #20b2aa l c h / 0.8369) 0%, rgb(from #20b2aa r g b / 0) 55.82%);
Report
- white ink: worst 2.56:1 at 16% (fails AA); black ink: worst 7.80:1 at 73% (AA) → use black text.
- Banding medium: ~6px bands at 1440px — add grain 12 (≈1% soft-light noise) or shorten the ramp.
Export
.gradient {
background-image: linear-gradient(135deg, #20b2aa 0%, #00b2ba 7.14%, #00b1cb 14.29%, #00afda 21.43%, #2cabe8 28.57%, #4aa6f4 35.71%, #65a0fd 42.86%, #7d9aff 50%, #9493ff 57.14%, #aa8bff 64.29%, #be84f9 71.43%, #d17cee 78.57%, #e275de 85.71%, #f26fcb 92.86%, #ff69b4 100%);
background-image: linear-gradient(135deg in oklch shorter hue, #20b2aa 0%, #ff69b4 100%);
}bg-linear-to-br/oklch from-[#20b2aa] to-[#ff69b4]
<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="#20b2aa"/><stop offset="7.14%" stop-color="#00b2ba"/><stop offset="14.29%" stop-color="#00b1cb"/><stop offset="21.43%" stop-color="#00afda"/><stop offset="28.57%" stop-color="#2cabe8"/><stop offset="35.71%" stop-color="#4aa6f4"/><stop offset="42.86%" stop-color="#65a0fd"/><stop offset="50%" stop-color="#7d9aff"/><stop offset="57.14%" stop-color="#9493ff"/><stop offset="64.29%" stop-color="#aa8bff"/><stop offset="71.43%" stop-color="#be84f9"/><stop offset="78.57%" stop-color="#d17cee"/><stop offset="85.71%" stop-color="#e275de"/><stop offset="92.86%" stop-color="#f26fcb"/><stop offset="100%" stop-color="#ff69b4"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
{
"lightseagreen-to-hotpink": {
"$type": "gradient",
"$value": [
{
"color": {
"colorSpace": "srgb",
"components": [
0.125,
0.698,
0.667
],
"hex": "#20b2aa"
},
"position": 0
},
{
"color": {
"colorSpace": "srgb",
"components": [
1,
0.412,
0.706
],
"hex": "#ff69b4"
},
"position": 1
}
],
"$extensions": {
"com.brandsweets": {
"kind": "linear",
"css": "linear-gradient(135deg in oklch shorter hue, #20b2aa 0%, #ff69b4 100%)",
"interpolation": "oklch",
"hue": "shorter",
"angle": 135,
"name": "lightseagreen-to-hotpink",
"contrast": {
"white": {
"ratio": 2.564,
"at": 0.1626,
"passesAA": false,
"passesAALarge": false
},
"black": {
"ratio": 7.804,
"at": 0.7268,
"passesAA": true,
"passesAALarge": true
},
"suggestedInk": "#000000"
}
}
},
"$description": "Light Sea Green to Hot Pink, interpolated in oklch."
}
}More from Light Sea Green
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 light sea green to hot pink 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