Named gradient · uiGradients

Winter

Winter is a teal gradient from uiGradients (MIT) — #e6dada → #274046 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 1.91:1 · fails
white 1.36 failsblack 1.91 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.

sRGB12%
OKLab6%
OKLCH58%

Report

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

Export

css
.gradient {
  background-image: linear-gradient(90deg, #e6dada 0%, #d7cecf 7.14%, #c8c2c3 14.29%, #bab7b8 21.43%, #acabad 28.57%, #9da0a2 35.71%, #909497 42.86%, #82898d 50%, #747e82 57.14%, #677378 64.29%, #5a696d 71.43%, #4d5e63 78.57%, #405459 85.71%, #344a50 92.86%, #274046 100%);
  background-image: linear-gradient(90deg in oklab, #e6dada 0%, #274046 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#e6dada] to-[#274046]
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="#e6dada"/><stop offset="7.14%" stop-color="#d7cecf"/><stop offset="14.29%" stop-color="#c8c2c3"/><stop offset="21.43%" stop-color="#bab7b8"/><stop offset="28.57%" stop-color="#acabad"/><stop offset="35.71%" stop-color="#9da0a2"/><stop offset="42.86%" stop-color="#909497"/><stop offset="50%" stop-color="#82898d"/><stop offset="57.14%" stop-color="#747e82"/><stop offset="64.29%" stop-color="#677378"/><stop offset="71.43%" stop-color="#5a696d"/><stop offset="78.57%" stop-color="#4d5e63"/><stop offset="85.71%" stop-color="#405459"/><stop offset="92.86%" stop-color="#344a50"/><stop offset="100%" stop-color="#274046"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "winter": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.902,
            0.855,
            0.855
          ],
          "hex": "#e6dada"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.153,
            0.251,
            0.275
          ],
          "hex": "#274046"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #e6dada 0%, #274046 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Winter",
        "contrast": {
          "white": {
            "ratio": 1.363,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 1.908,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Winter (uiGradients, MIT), rendered in OKLab."
  }
}

Tagged

More teal 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 Winter gradient (#e6dada, #274046), 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