Named gradient · uiGradients

Dawn

Dawn is a orange gradient from uiGradients (MIT) — #f3904f → #3b4371 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 2.36:1 · fails
white 2.36 failsblack 2.23 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.

sRGB32%
OKLab32%
OKLCH70%

Report

  • white ink: worst 2.36:1 at 0% (fails AA); black ink: worst 2.23: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 15 (≈2% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(90deg, #f3904f 0%, #e58b56 7.14%, #d7865b 14.29%, #c9815f 21.43%, #bc7c63 28.57%, #ae7766 35.71%, #a17269 42.86%, #946c6b 50%, #87676d 57.14%, #7a616e 64.29%, #6d5c70 71.43%, #615670 78.57%, #545071 85.71%, #474971 92.86%, #3b4371 100%);
  background-image: linear-gradient(90deg in oklab, #f3904f 0%, #3b4371 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#f3904f] to-[#3b4371]
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="#f3904f"/><stop offset="7.14%" stop-color="#e58b56"/><stop offset="14.29%" stop-color="#d7865b"/><stop offset="21.43%" stop-color="#c9815f"/><stop offset="28.57%" stop-color="#bc7c63"/><stop offset="35.71%" stop-color="#ae7766"/><stop offset="42.86%" stop-color="#a17269"/><stop offset="50%" stop-color="#946c6b"/><stop offset="57.14%" stop-color="#87676d"/><stop offset="64.29%" stop-color="#7a616e"/><stop offset="71.43%" stop-color="#6d5c70"/><stop offset="78.57%" stop-color="#615670"/><stop offset="85.71%" stop-color="#545071"/><stop offset="92.86%" stop-color="#474971"/><stop offset="100%" stop-color="#3b4371"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "dawn": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.953,
            0.565,
            0.31
          ],
          "hex": "#f3904f"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.231,
            0.263,
            0.443
          ],
          "hex": "#3b4371"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #f3904f 0%, #3b4371 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Dawn",
        "contrast": {
          "white": {
            "ratio": 2.356,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 2.227,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#ffffff"
        }
      }
    },
    "$description": "Dawn (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 Dawn gradient (#f3904f, #3b4371), 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