Named gradient · uiGradients

Jupiter

Jupiter is a orange gradient from uiGradients (MIT) — #ffd89b → #19547b at 90°. Shown here interpolated in OKLab, next to the original sRGB, with the worst-case contrast for white and black text and every export.

Aa — the quick brown fox
black text · worst 2.60:1 · fails
white 1.35 failsblack 2.60 failsbanding medium

Same stops, three spaces

The source renders this in sRGB. The number is how much chroma survives at the dullest point along the line — the difference between the first bar and the others is the grey that OKLab removes.

sRGB22%
OKLab13%
OKLCH99%

Report

  • white ink: worst 1.35:1 at 0% (fails AA); black ink: worst 2.60: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: ~6px bands at 1440px — add grain 11 (≈1% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(90deg, #ffd89b 0%, #eecf9a 7.14%, #dec599 14.29%, #cebc98 21.43%, #bdb297 28.57%, #ada995 35.71%, #9e9f93 42.86%, #8e9691 50%, #7e8d8e 57.14%, #6e838c 64.29%, #5f7a89 71.43%, #4f7186 78.57%, #3f6782 85.71%, #2d5e7f 92.86%, #19547b 100%);
  background-image: linear-gradient(90deg in oklab, #ffd89b 0%, #19547b 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#ffd89b] to-[#19547b]
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="0" y1="300" x2="1440" y2="300"><stop offset="0%" stop-color="#ffd89b"/><stop offset="7.14%" stop-color="#eecf9a"/><stop offset="14.29%" stop-color="#dec599"/><stop offset="21.43%" stop-color="#cebc98"/><stop offset="28.57%" stop-color="#bdb297"/><stop offset="35.71%" stop-color="#ada995"/><stop offset="42.86%" stop-color="#9e9f93"/><stop offset="50%" stop-color="#8e9691"/><stop offset="57.14%" stop-color="#7e8d8e"/><stop offset="64.29%" stop-color="#6e838c"/><stop offset="71.43%" stop-color="#5f7a89"/><stop offset="78.57%" stop-color="#4f7186"/><stop offset="85.71%" stop-color="#3f6782"/><stop offset="92.86%" stop-color="#2d5e7f"/><stop offset="100%" stop-color="#19547b"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "jupiter": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            1,
            0.847,
            0.608
          ],
          "hex": "#ffd89b"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.098,
            0.329,
            0.482
          ],
          "hex": "#19547b"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #ffd89b 0%, #19547b 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Jupiter",
        "contrast": {
          "white": {
            "ratio": 1.351,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 2.595,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Jupiter (uiGradients, MIT), rendered in OKLab."
  }
}

Tagged

More orange gradients

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

take the Jupiter gradient (#ffd89b, #19547b), re-interpolate it in oklch, and tell me the worst-case contrast for white text

Want the agent to remember your picks and write them into a living brand? Create a free BrandSweets workspace.

Machine-readable: gradients.md · From uiGradients (MIT) — licences