Named gradient · uiGradients

Friday

Friday is a blue gradient from uiGradients (MIT) — #83a4d4 → #b6fbff 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 8.23:1 · AA
white 1.15 failsblack 8.23 AAbanding 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.

sRGB85%
OKLab86%
OKLCH92%

Report

  • white ink: worst 1.15:1 at 100% (fails AA); black ink: worst 8.23:1 at 0% (AA) → use black text.
  • Banding medium: ~17px bands at 1440px — add grain 34 (≈2% soft-light noise) or shorten the ramp.

Export

css
.gradient {
  background-image: linear-gradient(90deg, #83a4d4 0%, #86aad7 7.14%, #8ab0da 14.29%, #8eb6dd 21.43%, #91bce1 28.57%, #95c3e4 35.71%, #98c9e7 42.86%, #9ccfea 50%, #a0d5ed 57.14%, #a3dbf0 64.29%, #a7e2f3 71.43%, #abe8f6 78.57%, #aeeef9 85.71%, #b2f5fc 92.86%, #b6fbff 100%);
  background-image: linear-gradient(90deg in oklab, #83a4d4 0%, #b6fbff 100%);
}
tailwind v4
bg-linear-to-r/oklab from-[#83a4d4] to-[#b6fbff]
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="#83a4d4"/><stop offset="7.14%" stop-color="#86aad7"/><stop offset="14.29%" stop-color="#8ab0da"/><stop offset="21.43%" stop-color="#8eb6dd"/><stop offset="28.57%" stop-color="#91bce1"/><stop offset="35.71%" stop-color="#95c3e4"/><stop offset="42.86%" stop-color="#98c9e7"/><stop offset="50%" stop-color="#9ccfea"/><stop offset="57.14%" stop-color="#a0d5ed"/><stop offset="64.29%" stop-color="#a3dbf0"/><stop offset="71.43%" stop-color="#a7e2f3"/><stop offset="78.57%" stop-color="#abe8f6"/><stop offset="85.71%" stop-color="#aeeef9"/><stop offset="92.86%" stop-color="#b2f5fc"/><stop offset="100%" stop-color="#b6fbff"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
dtcg
{
  "friday": {
    "$type": "gradient",
    "$value": [
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.514,
            0.643,
            0.831
          ],
          "hex": "#83a4d4"
        },
        "position": 0
      },
      {
        "color": {
          "colorSpace": "srgb",
          "components": [
            0.714,
            0.984,
            1
          ],
          "hex": "#b6fbff"
        },
        "position": 1
      }
    ],
    "$extensions": {
      "com.brandsweets": {
        "kind": "linear",
        "css": "linear-gradient(90deg in oklab, #83a4d4 0%, #b6fbff 100%)",
        "interpolation": "oklab",
        "angle": 90,
        "name": "Friday",
        "contrast": {
          "white": {
            "ratio": 1.152,
            "at": 1,
            "passesAA": false,
            "passesAALarge": false
          },
          "black": {
            "ratio": 8.226,
            "at": 0,
            "passesAA": true,
            "passesAALarge": true
          },
          "suggestedInk": "#000000"
        }
      }
    },
    "$description": "Friday (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 Friday gradient (#83a4d4, #b6fbff), 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