Colour to colour

Emerald Green to Light Coral gradient

Emerald Green (#50c878) into Light Coral (#f08080) — 131° 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 oklab — both colours are in the palette and the hue gap is small enough that the straight line stays clean.

Emerald Green → Light Coral
black text · worst 8.10:1 · AA
white 2.12 failsblack 8.10 AAbanding high

OKLab and OKLCH, side by side

Aa

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.

white 2.12 failsblack 8.10 AAbanding high
css
linear-gradient(135deg in oklab, #50c878 0%, #f08080 100%)
Aa

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.

white 2.12 failsblack 8.09 AAbanding high
css
linear-gradient(135deg in oklch shorter hue, #50c878 0%, #f08080 100%)

And the sRGB line most tools draw, for comparison — the number is the chroma that survives at the dullest point.

sRGB33%
OKLab41%
OKLCH93%

Eased and mesh

Aa

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.

white 2.12 failsblack 8.10 AAbanding high
css
linear-gradient(135deg in oklab, #50c878 0%, #55c778 8.28%, #62c579 16.03%, #72c179 23.35%, #84bd7a 30.32%, #95b77b 37.03%, #a6b07b 43.56%, #b6a97c 50%, #c4a27d 56.44%, #d09a7e 62.97%, #db927f 69.68%, #e48b7f 76.65%, #ea8580 83.97%, #ef8180 91.72%, #f08080 100%)
Aa

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.

white 2.33 failsblack 8.34 AAbanding high
css
background-color: #b6a97c;
background-image: radial-gradient(circle farthest-corner at 78.16% 7.36%, rgba(80, 200, 120, 0.791) 0%, rgba(80, 200, 120, 0) 52.43%), radial-gradient(circle farthest-corner at 66.89% 95.19%, rgba(240, 128, 128, 0.713) 0%, rgba(240, 128, 128, 0) 52.23%);
background-image: radial-gradient(circle farthest-corner at 78.16% 7.36%, oklch(from #50c878 l c h / 0.7908) 0%, rgb(from #50c878 r g b / 0) 52.43%), radial-gradient(circle farthest-corner at 66.89% 95.19%, oklch(from #f08080 l c h / 0.7132) 0%, rgb(from #f08080 r g b / 0) 52.23%);

Report

  • white ink: worst 2.12:1 at 1% (fails AA); black ink: worst 8.10:1 at 100% (AA) → use black text.
  • Banding high: ~9px bands at 1440px — add grain 18 (≈2% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(135deg, #50c878 0%, #66c479 7.14%, #78c079 14.29%, #87bc7a 21.43%, #94b77b 28.57%, #a0b37b 35.71%, #abae7c 42.86%, #b6a97c 50%, #bfa47d 57.14%, #c89f7d 64.29%, #d1997e 71.43%, #d9947e 78.57%, #e18d7f 85.71%, #e98780 92.86%, #f08080 100%);
  background-image: linear-gradient(135deg in oklab, #50c878 0%, #f08080 100%);
}
tailwind v4
bg-linear-to-br/oklab from-[#50c878] to-[#f08080]
svg
<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="#50c878"/><stop offset="7.14%" stop-color="#66c479"/><stop offset="14.29%" stop-color="#78c079"/><stop offset="21.43%" stop-color="#87bc7a"/><stop offset="28.57%" stop-color="#94b77b"/><stop offset="35.71%" stop-color="#a0b37b"/><stop offset="42.86%" stop-color="#abae7c"/><stop offset="50%" stop-color="#b6a97c"/><stop offset="57.14%" stop-color="#bfa47d"/><stop offset="64.29%" stop-color="#c89f7d"/><stop offset="71.43%" stop-color="#d1997e"/><stop offset="78.57%" stop-color="#d9947e"/><stop offset="85.71%" stop-color="#e18d7f"/><stop offset="92.86%" stop-color="#e98780"/><stop offset="100%" stop-color="#f08080"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "emerald-green-to-lightcoral": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.314,
            0.784,
            0.471
          ],
          "hex": "#50c878"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.941,
            0.502,
            0.502
          ],
          "hex": "#f08080"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(135deg in oklab, #50c878 0%, #f08080 100%)",
        "interpolation": "oklab",
        "angle": 135,
        "name": "emerald-green-to-lightcoral",
        "contrast": {
          "white": {
            "ratio": 2.121,
            "at": 0.0091,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 8.104,
            "at": 1,
            "passesAA": true,
            "passesAALarge": true
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Emerald Green to Light Coral, interpolated in oklab."
  }
}

More from Emerald Green

mcpConnect your agent to the gradient engine
live endpoint

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.

endpointhttps://mcp.brandsweets.com/gradients/mcp
claude mcp add --transport http brandsweets-gradients https://mcp.brandsweets.com/gradients/mcp
try this prompt

make a emerald green to light coral 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