Named gradient · uiGradients
Pink Flavour
Pink Flavour is a purple gradient from uiGradients (MIT) — #800080 → #ffc0cb 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.54:1 at 100% (fails AA); black ink: worst 2.23: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: ~8px bands at 1440px — add grain 15 (≈2% soft-light noise) or shorten the ramp.
Export
.gradient {
background-image: linear-gradient(90deg, #800080 0%, #891c86 7.14%, #922d8c 14.29%, #9b3b91 21.43%, #a44897 28.57%, #ad559c 35.71%, #b661a2 42.86%, #bf6da7 50%, #c879ad 57.14%, #d184b2 64.29%, #da90b7 71.43%, #e39cbc 78.57%, #eda8c1 85.71%, #f6b4c6 92.86%, #ffc0cb 100%);
background-image: linear-gradient(90deg in oklab, #800080 0%, #ffc0cb 100%);
}bg-linear-to-r/oklab from-[#800080] to-[#ffc0cb]
<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="#800080"/><stop offset="7.14%" stop-color="#891c86"/><stop offset="14.29%" stop-color="#922d8c"/><stop offset="21.43%" stop-color="#9b3b91"/><stop offset="28.57%" stop-color="#a44897"/><stop offset="35.71%" stop-color="#ad559c"/><stop offset="42.86%" stop-color="#b661a2"/><stop offset="50%" stop-color="#bf6da7"/><stop offset="57.14%" stop-color="#c879ad"/><stop offset="64.29%" stop-color="#d184b2"/><stop offset="71.43%" stop-color="#da90b7"/><stop offset="78.57%" stop-color="#e39cbc"/><stop offset="85.71%" stop-color="#eda8c1"/><stop offset="92.86%" stop-color="#f6b4c6"/><stop offset="100%" stop-color="#ffc0cb"/></linearGradient></defs><rect width="1440" height="600" fill="url(#bs-gradient)"/></svg>
{
"pink-flavour": {
"$type": "gradient",
"$value": [
{
"color": {
"colorSpace": "srgb",
"components": [
0.502,
0,
0.502
],
"hex": "#800080"
},
"position": 0
},
{
"color": {
"colorSpace": "srgb",
"components": [
1,
0.753,
0.796
],
"hex": "#ffc0cb"
},
"position": 1
}
],
"$extensions": {
"com.brandsweets": {
"kind": "linear",
"css": "linear-gradient(90deg in oklab, #800080 0%, #ffc0cb 100%)",
"interpolation": "oklab",
"angle": 90,
"name": "Pink Flavour",
"contrast": {
"white": {
"ratio": 1.538,
"at": 1,
"passesAA": false,
"passesAALarge": false
},
"black": {
"ratio": 2.23,
"at": 0,
"passesAA": false,
"passesAALarge": false
},
"suggestedInk": "#000000"
}
}
},
"$description": "Pink Flavour (uiGradients, MIT), rendered in OKLab."
}
}Tagged
More purple 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 Pink Flavour gradient (#800080, #ffc0cb), 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