Named gradient · uiGradients

Visions of Grandeur

Visions of Grandeur is a blue gradient from uiGradients (MIT) — #000046 → #1cb5e0 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.40:1 · fails
white 2.40 failsblack 1.09 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.

sRGB90%
OKLab90%
OKLCH94%

Report

  • white ink: worst 2.40:1 at 100% (fails AA); black ink: worst 1.09:1 at 0% (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, #000046 0%, #000f50 7.14%, #001c5b 14.29%, #002966 21.43%, #003570 28.57%, #00417b 35.71%, #004d86 42.86%, #005a91 50%, #00669c 57.14%, #0073a7 64.29%, #0080b2 71.43%, #008dbe 78.57%, #069ac9 85.71%, #12a7d4 92.86%, #1cb5e0 100%);
  background-image: linear-gradient(90deg in oklab, #000046 0%, #1cb5e0 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#000046] to-[#1cb5e0]
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="#000046"/><stop offset="7.14%" stop-color="#000f50"/><stop offset="14.29%" stop-color="#001c5b"/><stop offset="21.43%" stop-color="#002966"/><stop offset="28.57%" stop-color="#003570"/><stop offset="35.71%" stop-color="#00417b"/><stop offset="42.86%" stop-color="#004d86"/><stop offset="50%" stop-color="#005a91"/><stop offset="57.14%" stop-color="#00669c"/><stop offset="64.29%" stop-color="#0073a7"/><stop offset="71.43%" stop-color="#0080b2"/><stop offset="78.57%" stop-color="#008dbe"/><stop offset="85.71%" stop-color="#069ac9"/><stop offset="92.86%" stop-color="#12a7d4"/><stop offset="100%" stop-color="#1cb5e0"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "visions-of-grandeur": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0,
            0,
            0.275
          ],
          "hex": "#000046"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.11,
            0.71,
            0.878
          ],
          "hex": "#1cb5e0"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #000046 0%, #1cb5e0 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Visions of Grandeur",
        "contrast": {
          "white": {
            "ratio": 2.404,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 1.088,
            "at": 0,
            "passesAA": false,
            "passesAALarge": false
          },
          "suggestedInk": "#ffffff"
        }
      }
    },
    "$description": "Visions of Grandeur (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 Visions of Grandeur gradient (#000046, #1cb5e0), 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