Named gradient · uiGradients

Venice Blue

Venice Blue is a blue gradient from uiGradients (MIT) — #085078 → #85d8ce 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.43:1 · fails
white 1.65 failsblack 2.43 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.

sRGB89%
OKLab87%
OKLCH94%

Report

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

Export

css
.gradient {
  background-image: linear-gradient(90deg, #085078 0%, #13597e 7.14%, #1d6284 14.29%, #266c8b 21.43%, #2f7591 28.57%, #377f97 35.71%, #40889d 42.86%, #4892a3 50%, #519ca9 57.14%, #59a6b0 64.29%, #62afb6 71.43%, #6bb9bc 78.57%, #73c4c2 85.71%, #7ccec8 92.86%, #85d8ce 100%);
  background-image: linear-gradient(90deg in oklab, #085078 0%, #85d8ce 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#085078] to-[#85d8ce]
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="#085078"/><stop offset="7.14%" stop-color="#13597e"/><stop offset="14.29%" stop-color="#1d6284"/><stop offset="21.43%" stop-color="#266c8b"/><stop offset="28.57%" stop-color="#2f7591"/><stop offset="35.71%" stop-color="#377f97"/><stop offset="42.86%" stop-color="#40889d"/><stop offset="50%" stop-color="#4892a3"/><stop offset="57.14%" stop-color="#519ca9"/><stop offset="64.29%" stop-color="#59a6b0"/><stop offset="71.43%" stop-color="#62afb6"/><stop offset="78.57%" stop-color="#6bb9bc"/><stop offset="85.71%" stop-color="#73c4c2"/><stop offset="92.86%" stop-color="#7ccec8"/><stop offset="100%" stop-color="#85d8ce"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "venice-blue": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.031,
            0.314,
            0.471
          ],
          "hex": "#085078"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.522,
            0.847,
            0.808
          ],
          "hex": "#85d8ce"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #085078 0%, #85d8ce 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Venice Blue",
        "contrast": {
          "white": {
            "ratio": 1.652,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 2.429,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Venice Blue (uiGradients, MIT), rendered in OKLab."
  }
}

Tagged

More blue 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 Venice Blue gradient (#085078, #85d8ce), 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