Colour to colour · generated

Sky Blue to Blush Pink gradient

Sky Blue (#87ceeb) into Blush Pink (#e8b4b8) — 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.

Sky Blue → Blush Pink
black text · worst 11.55:1 · AA
white 1.74 failsblack 11.55 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 1.74 failsblack 11.62 AAbanding high
css
linear-gradient(135deg in oklab, #87ceeb 0%, #e8b4b8 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.74 failsblack 11.55 AAbanding high
css
linear-gradient(135deg in oklch shorter hue, #87ceeb 0%, #e8b4b8 100%)

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

sRGB27%
OKLab27%
OKLCH85%

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.74 failsblack 11.55 AAbanding high
css
linear-gradient(135deg in oklch shorter hue, #87ceeb 0%, #89cdec 8.28%, #8eccef 16.03%, #96c9f2 23.35%, #a1c6f5 30.32%, #aec1f5 37.03%, #bcbdf2 43.56%, #c9b9eb 50%, #d4b6e2 56.44%, #ddb4d8 62.97%, #e3b3ce 69.68%, #e6b3c5 76.65%, #e7b3be 83.97%, #e8b4b9 91.72%, #e8b4b8 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.76 failsblack 11.71 AAbanding high
css
background-color: #bec2d2;
background-image: radial-gradient(circle farthest-corner at 3.89% 24.78%, rgba(135, 206, 235, 0.861) 0%, rgba(135, 206, 235, 0) 48.47%), radial-gradient(circle farthest-corner at 92.65% 46.78%, rgba(232, 180, 184, 0.858) 0%, rgba(232, 180, 184, 0) 46.2%);
background-image: radial-gradient(circle farthest-corner at 3.89% 24.78%, oklch(from #87ceeb l c h / 0.8606) 0%, rgb(from #87ceeb r g b / 0) 48.47%), radial-gradient(circle farthest-corner at 92.65% 46.78%, oklch(from #e8b4b8 l c h / 0.8583) 0%, rgb(from #e8b4b8 r g b / 0) 46.2%);

Report

  • white ink: worst 1.74:1 at 1% (fails AA); black ink: worst 11.55:1 at 76% (AA) → use black text.
  • Banding high: ~15px bands at 1440px — add grain 31 (≈2% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(135deg, #87ceeb 0%, #90cbf0 7.14%, #99c8f3 14.29%, #a3c5f5 21.43%, #aec2f5 28.57%, #b7bff3 35.71%, #c1bcf0 42.86%, #c9b9eb 50%, #d1b7e5 57.14%, #d8b5df 64.29%, #ddb4d7 71.43%, #e2b3cf 78.57%, #e5b3c7 85.71%, #e7b3bf 92.86%, #e8b4b8 100%);
  background-image: linear-gradient(135deg in oklch shorter hue, #87ceeb 0%, #e8b4b8 100%);
}
tailwind v4
bg-linear-to-br/oklch from-[#87ceeb] to-[#e8b4b8]
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="#87ceeb"/><stop offset="7.14%" stop-color="#90cbf0"/><stop offset="14.29%" stop-color="#99c8f3"/><stop offset="21.43%" stop-color="#a3c5f5"/><stop offset="28.57%" stop-color="#aec2f5"/><stop offset="35.71%" stop-color="#b7bff3"/><stop offset="42.86%" stop-color="#c1bcf0"/><stop offset="50%" stop-color="#c9b9eb"/><stop offset="57.14%" stop-color="#d1b7e5"/><stop offset="64.29%" stop-color="#d8b5df"/><stop offset="71.43%" stop-color="#ddb4d7"/><stop offset="78.57%" stop-color="#e2b3cf"/><stop offset="85.71%" stop-color="#e5b3c7"/><stop offset="92.86%" stop-color="#e7b3bf"/><stop offset="100%" stop-color="#e8b4b8"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "skyblue-to-blush-pink": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.529,
            0.808,
            0.922
          ],
          "hex": "#87ceeb"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.91,
            0.706,
            0.722
          ],
          "hex": "#e8b4b8"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(135deg in oklch shorter hue, #87ceeb 0%, #e8b4b8 100%)",
        "interpolation": "oklch",
        "hue": "shorter",
        "angle": 135,
        "name": "skyblue-to-blush-pink",
        "contrast": {
          "white": {
            "ratio": 1.737,
            "at": 0.013,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 11.548,
            "at": 0.7619,
            "passesAA": true,
            "passesAALarge": true
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Sky Blue to Blush Pink, interpolated in oklch."
  }
}

More from Sky Blue

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 sky blue to blush 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