Named gradient · uiGradients

Starfall

Starfall is a orange gradient from uiGradients (MIT) — #f0c27b → #4b1248 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
white text · worst 1.65:1 · fails
white 1.65 failsblack 1.48 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.

sRGB63%
OKLab59%
OKLCH97%

Report

  • white ink: worst 1.65:1 at 0% (fails AA); black ink: worst 1.48:1 at 100% (fails AA) → use white 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: ~8px bands at 1440px — add grain 16 (≈2% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(90deg, #f0c27b 0%, #e3b579 7.14%, #d7a877 14.29%, #ca9b74 21.43%, #be8e71 28.57%, #b2826e 35.71%, #a6756b 42.86%, #9a6967 50%, #8e5d64 57.14%, #825160 64.29%, #77455b 71.43%, #6c3957 78.57%, #612c52 85.71%, #56204d 92.86%, #4b1248 100%);
  background-image: linear-gradient(90deg in oklab, #f0c27b 0%, #4b1248 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#f0c27b] to-[#4b1248]
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="#f0c27b"/><stop offset="7.14%" stop-color="#e3b579"/><stop offset="14.29%" stop-color="#d7a877"/><stop offset="21.43%" stop-color="#ca9b74"/><stop offset="28.57%" stop-color="#be8e71"/><stop offset="35.71%" stop-color="#b2826e"/><stop offset="42.86%" stop-color="#a6756b"/><stop offset="50%" stop-color="#9a6967"/><stop offset="57.14%" stop-color="#8e5d64"/><stop offset="64.29%" stop-color="#825160"/><stop offset="71.43%" stop-color="#77455b"/><stop offset="78.57%" stop-color="#6c3957"/><stop offset="85.71%" stop-color="#612c52"/><stop offset="92.86%" stop-color="#56204d"/><stop offset="100%" stop-color="#4b1248"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "starfall": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.941,
            0.761,
            0.482
          ],
          "hex": "#f0c27b"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.294,
            0.071,
            0.282
          ],
          "hex": "#4b1248"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #f0c27b 0%, #4b1248 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Starfall",
        "contrast": {
          "white": {
            "ratio": 1.653,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 1.479,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#ffffff"
        }
      }
    },
    "$description": "Starfall (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 Starfall gradient (#f0c27b, #4b1248), 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