Colour to colour

Lavender to Brown gradient

Lavender (#e6e6fa) into Brown (#a52a2a) — 100° 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.

Lavender → Brown
black text · worst 2.96:1 · fails
white 1.23 failsblack 2.96 failsbanding medium

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 1.23 failsblack 2.96 failsbanding medium
css
linear-gradient(135deg in oklab, #e6e6fa 0%, #a52a2a 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 1.23 failsblack 2.96 failsbanding medium
css
linear-gradient(135deg in oklch shorter hue, #e6e6fa 0%, #a52a2a 100%)

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

sRGB28%
OKLab27%
OKLCH29%

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 1.23 failsblack 2.96 failsbanding medium
css
linear-gradient(135deg in oklab, #e6e6fa 0%, #e5e3f7 8.28%, #e4dcee 16.03%, #e1d1e0 23.35%, #dec2cf 30.32%, #d9b2bb 37.03%, #d39fa6 43.56%, #cd8c90 50%, #c5797a 56.44%, #be6665 62.97%, #b65553 69.68%, #b04543 76.65%, #aa3736 83.97%, #a62e2d 91.72%, #a52a2a 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 1.79 failsblack 6.82 AAbanding low
css
background-color: #cd8c90;
background-image: radial-gradient(circle farthest-corner at 37.51% 84.31%, rgba(165, 42, 42, 0.74) 0%, rgba(165, 42, 42, 0) 46.72%), radial-gradient(circle farthest-corner at 57.5% 29.32%, rgba(230, 230, 250, 0.89) 0%, rgba(230, 230, 250, 0) 56.95%);
background-image: radial-gradient(circle farthest-corner at 37.51% 84.31%, oklch(from #a52a2a l c h / 0.7401) 0%, rgb(from #a52a2a r g b / 0) 46.72%), radial-gradient(circle farthest-corner at 57.5% 29.32%, oklch(from #e6e6fa l c h / 0.8904) 0%, rgb(from #e6e6fa r g b / 0) 56.95%);

Report

  • white ink: worst 1.23:1 at 0% (fails AA); black ink: worst 2.96:1 at 100% (fails AA) → use black text.
  • Neither ink passes AA at the worst point — treat as decorative or add a scrim (rgba(0,0,0,.35) typically lifts white ink past 4:1).
  • Banding medium: ~7px bands at 1440px — add grain 13 (≈2% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(135deg, #e6e6fa 0%, #e3d9ea 7.14%, #e0ccdb 14.29%, #ddbfcb 21.43%, #d9b3bc 28.57%, #d5a6ad 35.71%, #d1999e 42.86%, #cd8c90 50%, #c87f81 57.14%, #c37273 64.29%, #bd6564 71.43%, #b85856 78.57%, #b24a48 85.71%, #ab3b39 92.86%, #a52a2a 100%);
  background-image: linear-gradient(135deg in oklab, #e6e6fa 0%, #a52a2a 100%);
}
tailwind v4
bg-linear-to-br/oklab from-[#e6e6fa] to-[#a52a2a]
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="#e6e6fa"/><stop offset="7.14%" stop-color="#e3d9ea"/><stop offset="14.29%" stop-color="#e0ccdb"/><stop offset="21.43%" stop-color="#ddbfcb"/><stop offset="28.57%" stop-color="#d9b3bc"/><stop offset="35.71%" stop-color="#d5a6ad"/><stop offset="42.86%" stop-color="#d1999e"/><stop offset="50%" stop-color="#cd8c90"/><stop offset="57.14%" stop-color="#c87f81"/><stop offset="64.29%" stop-color="#c37273"/><stop offset="71.43%" stop-color="#bd6564"/><stop offset="78.57%" stop-color="#b85856"/><stop offset="85.71%" stop-color="#b24a48"/><stop offset="92.86%" stop-color="#ab3b39"/><stop offset="100%" stop-color="#a52a2a"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "lavender-to-brown": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.902,
            0.902,
            0.98
          ],
          "hex": "#e6e6fa"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.647,
            0.165,
            0.165
          ],
          "hex": "#a52a2a"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(135deg in oklab, #e6e6fa 0%, #a52a2a 100%)",
        "interpolation": "oklab",
        "angle": 135,
        "name": "lavender-to-brown",
        "contrast": {
          "white": {
            "ratio": 1.231,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 2.964,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Lavender to Brown, interpolated in oklab."
  }
}

More from Lavender

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 lavender to brown 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