Named gradient · uiGradients
Sand to Blue
Sand to Blue is a teal gradient from uiGradients (MIT) — #3e5151 → #decba4 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.
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.
Report
- white ink: worst 1.59:1 at 100% (fails AA); black ink: worst 2.50: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: ~9px bands at 1440px — add grain 18 (≈2% soft-light noise) or shorten the ramp.
Export
.gradient {
background-image: linear-gradient(90deg, #3e5151 0%, #495957 7.14%, #53615d 14.29%, #5e6a62 21.43%, #697268 28.57%, #747b6e 35.71%, #7f8374 42.86%, #8b8c7a 50%, #969580 57.14%, #a29e86 64.29%, #aea68c 71.43%, #baaf92 78.57%, #c6b998 85.71%, #d2c29e 92.86%, #decba4 100%);
background-image: linear-gradient(90deg in oklab, #3e5151 0%, #decba4 100%);
}bg-linear-to-r/oklab from-[#3e5151] to-[#decba4]
<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="#3e5151"/><stop offset="7.14%" stop-color="#495957"/><stop offset="14.29%" stop-color="#53615d"/><stop offset="21.43%" stop-color="#5e6a62"/><stop offset="28.57%" stop-color="#697268"/><stop offset="35.71%" stop-color="#747b6e"/><stop offset="42.86%" stop-color="#7f8374"/><stop offset="50%" stop-color="#8b8c7a"/><stop offset="57.14%" stop-color="#969580"/><stop offset="64.29%" stop-color="#a29e86"/><stop offset="71.43%" stop-color="#aea68c"/><stop offset="78.57%" stop-color="#baaf92"/><stop offset="85.71%" stop-color="#c6b998"/><stop offset="92.86%" stop-color="#d2c29e"/><stop offset="100%" stop-color="#decba4"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
{
"sand-to-blue-ui": {
"$type": "gradient",
"$value": [
{
"color": {
"colorSpace": "srgb",
"components": [
0.243,
0.318,
0.318
],
"hex": "#3e5151"
},
"position": 0
},
{
"color": {
"colorSpace": "srgb",
"components": [
0.871,
0.796,
0.643
],
"hex": "#decba4"
},
"position": 1
}
],
"$extensions": {
"com.brandsweets": {
"kind": "linear",
"css": "linear-gradient(90deg in oklab, #3e5151 0%, #decba4 100%)",
"interpolation": "oklab",
"angle": 90,
"name": "Sand to Blue",
"contrast": {
"white": {
"ratio": 1.593,
"at": 1,
"passesAA": false,
"passesAALarge": false
},
"black": {
"ratio": 2.501,
"at": 0,
"passesAA": false,
"passesAALarge": false
},
"suggestedInk": "#000000"
}
}
},
"$description": "Sand to Blue (uiGradients, MIT), rendered in OKLab."
}
}Tagged
More teal gradients
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.
https://mcp.brandsweets.com/gradients/mcpclaude mcp add --transport http brandsweets-gradients https://mcp.brandsweets.com/gradients/mcp
›take the Sand to Blue gradient (#3e5151, #decba4), 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