#b9b2cb
a light, soft violet · cool · closest name: Thistle
Token name suggestion: Meadow Thistle
#b9b2cb is a light soft violet, 257° on the wheel and 63/100 on the cool side. Put black text on it (10.29:1). As text it scores 2.04:1 on white — use #7C6F9E instead. Nearest name is Thistle, nearest Tailwind family is zinc.
At a glance
Every number on this page in one read: what #b9b2cb is made of, how bright it looks, and which way it leans.
Left edge is grey, right edge is full chroma; top is white, bottom is black. The dot is #b9b2cb.
Reads cool. Warm and cool siblings keep the same lightness, so you can swap one in without redoing your contrast maths.
Green carries most of what the eye calls brightness — that is why WCAG weights it 0.7152.
Every format
| HEX | #b9b2cb |
| HEX (8-digit) | #b9b2cbff |
| RGB | rgb(185, 178, 203) |
| RGBA | rgba(185, 178, 203, 1) |
| HSL | hsl(257, 19%, 75%) |
| HSV / HSB | hsv(257, 12%, 80%) |
| HWB | hwb(257 70% 20%) |
| CMYK | cmyk(9%, 12%, 0%, 20%) |
| LAB | lab(73.8 7.3 -11.7) |
| LCH | lch(73.8 13.8 301.8) |
| OKLCH | oklch(0.777 0.036 298.4) |
| XYZ (D65) | xyz(46.71, 46.47, 63.00) |
| Decimal | 12169931 |
| Display P3 | color(display-p3 0.725 0.698 0.796) |
| Web-safe | #CC99CC |
Copy-ready code
/* CSS */
color: #b9b2cb;
background-color: #b9b2cb;
/* CSS custom property */
--brand: #b9b2cb;
/* Tailwind (arbitrary) */
class="text-[#b9b2cb] bg-[#b9b2cb]"
/* SCSS */
$brand: #b9b2cb;
/* SwiftUI */
Color(red: 0.725, green: 0.698, blue: 0.796)
/* UIKit */
UIColor(red: 0.725, green: 0.698, blue: 0.796, alpha: 1)
/* Android XML */
<color name="brand">#B9B2CB</color>
/* Android Compose */
Color(0xFFB9B2CB)
/* Flutter */
Color(0xFFB9B2CB)
/* Python / OpenCV (BGR) */
(203, 178, 185)
/* Python / PIL (RGB) */
(185, 178, 203)
/* Java AWT */
new Color(185, 178, 203)
/* .NET */
Color.FromArgb(255, 185, 178, 203)
/* OpenGL / Unity (0–1) */
(0.7255f, 0.6980f, 0.7961f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{185,178,203}/* mix without leaving CSS */ background: color-mix(in oklab, #b9b2cb 85%, white); border-color: color-mix(in oklab, #b9b2cb 40%, transparent); /* theme-aware in one line */ color: light-dark(#3A334C, #DEDAE6); /* relative colour syntax */ --hover: hsl(from #b9b2cb h s calc(l - 7));
Design tokens
The same ramp in the four formats a team actually needs. Paste one and the whole palette lands with it.
:root {
--brand-50: #F7F6F9;
--brand-100: #EFEDF2;
--brand-200: #DBD8E4;
--brand-300: #b9b2cb;
--brand-400: #A49BBB;
--brand-500: #8579A5;
--brand-600: #706392;
--brand-700: #5D527A;
--brand-800: #4B4261;
--brand-900: #383248;
--brand-950: #231F2D;
--brand: #b9b2cb;
--brand-ink: #000000;
--brand-surface: #F7F6F9;
--brand-border: #D3CEDE;
--brand-hover: #A69DBD;
--brand-pressed: #9287AE;
}
@media (prefers-color-scheme: dark) {
:root {
--brand-surface: #1A1721;
--brand-ink: #DEDAE6;
}
}theme: {
extend: {
colors: {
brand: {
50: '#F7F6F9',
100: '#EFEDF2',
200: '#DBD8E4',
300: '#b9b2cb',
400: '#A49BBB',
500: '#8579A5',
600: '#706392',
700: '#5D527A',
800: '#4B4261',
900: '#383248',
950: '#231F2D',
DEFAULT: '#b9b2cb',
},
},
},
}$brand: (
'50': #F7F6F9,
'100': #EFEDF2,
'200': #DBD8E4,
'300': #b9b2cb,
'400': #A49BBB,
'500': #8579A5,
'600': #706392,
'700': #5D527A,
'800': #4B4261,
'900': #383248,
'950': #231F2D,
);
$brand-base: #b9b2cb;
$brand-ink: #000000;
@function brand($step) { @return map-get($brand, $step); }{
"color": {
"brand": {
"50": { "$value": "#F7F6F9", "$type": "color" },
"100": { "$value": "#EFEDF2", "$type": "color" },
"200": { "$value": "#DBD8E4", "$type": "color" },
"300": { "$value": "#b9b2cb", "$type": "color" },
"400": { "$value": "#A49BBB", "$type": "color" },
"500": { "$value": "#8579A5", "$type": "color" },
"600": { "$value": "#706392", "$type": "color" },
"700": { "$value": "#5D527A", "$type": "color" },
"800": { "$value": "#4B4261", "$type": "color" },
"900": { "$value": "#383248", "$type": "color" },
"950": { "$value": "#231F2D", "$type": "color" }
},
"brandInk": { "$value": "#000000", "$type": "color" }
}
}Best text color
Only one of black and white can be right. This is the one, with the number that proves it.
Make it accessible
A contrast checker tells you that you failed. This tells you what to ship instead — same hue, same saturation, lightness moved only as far as WCAG demands.
Large text — 24px regular or 18.66px bold and above — only needs 3:1, so #988DB2 is enough for headings on white. Non-text elements such as icons, chart strokes and focus rings also sit at 3:1 under WCAG 2.2 (1.4.11).
Accessibility — WCAG contrast
Contrast is symmetric, so each row covers both directions: #b9b2cb as text on that neutral, and that neutral as text on #b9b2cb.
| Neutral | Ratio | Verdict | Both directions |
|---|---|---|---|
| White#ffffff | 2.04:1 | AAAA lgAAA | AaAa |
| Slate 50#f8fafc | 1.95:1 | AAAA lgAAA | AaAa |
| Slate 100#f1f5f9 | 1.86:1 | AAAA lgAAA | AaAa |
| Slate 200#e2e8f0 | 1.65:1 | AAAA lgAAA | AaAa |
| Slate 300#cbd5e1 | 1.37:1 | AAAA lgAAA | AaAa |
| Slate 400#94a3b8 | 1.26:1 | AAAA lgAAA | AaAa |
| Slate 500#64748b | 2.33:1 | AAAA lgAAA | AaAa |
| Slate 600#475569 | 3.71:1 | AAAA lgAAA | AaAa |
| Slate 700#334155 | 5.08:1 | AAAA lgAAA | AaAa |
| Slate 800#1e293b | 7.17:1 | AAAA lgAAA | AaAa |
| Slate 900#0f172a | 8.75:1 | AAAA lgAAA | AaAa |
| Black#000000 | 10.29:1 | AAAA lgAAA | AaAa |
Roughly one man in twelve has some form of colour vision deficiency. If any of the three panels above is hard to tell apart from a neighbouring colour in your palette, add a shape, an icon or a label so the meaning does not rest on hue alone.
Color scale — 50 to 950
A Tailwind-shaped ramp built around this exact hex. #b9b2cb is pinned to step 300; the rest hold its hue and let saturation ease off at the extremes so the pale end never turns neon.
The same eleven steps expressed in OKLCH, where equal lightness numbers actually look equally spaced. HSL ramps go muddy in the yellows and washed out in the blues; this one does not. Modern browsers render it natively — the hex ramp above is the fallback.
:root {
--brand-50: oklch(0.97 0.009 298.4);
--brand-100: oklch(0.94 0.014 298.4);
--brand-200: oklch(0.88 0.022 298.4);
--brand-300: oklch(0.80 0.028 298.4);
--brand-400: oklch(0.72 0.033 298.4);
--brand-500: oklch(0.64 0.036 298.4);
--brand-600: oklch(0.56 0.036 298.4);
--brand-700: oklch(0.48 0.034 298.4);
--brand-800: oklch(0.40 0.030 298.4);
--brand-900: oklch(0.32 0.025 298.4);
--brand-950: oklch(0.24 0.020 298.4);
}Colors that work with #b9b2cb
Not a palette — a role sheet. Each swatch answers one question you will hit while building the component.
Surface, border, heading and body all derive from this one hue, so the screen stays coherent without a second palette.
Lightness flips, hue holds. The accent stays the anchor in both themes.
In real components
The same eight roles, wired into the interface patterns you will actually build with them. Every state below is a computed value, not a mock-up.
Focus ring uses the light variant so the field still reads as one shape.
The file stays available for seven days. Download it before it expires.
How to use #b9b2cb
Derived from its contrast, chroma and lightness — not from taste.
- ✓Text and icons on dark surfaces
- ✓Charts, tags and secondary surfaces
- ✓Card and section backgrounds
- ✓Brand accents, badges and data highlights
- ⚠Text of any size on white — fails WCAG AA
- ⚠White text placed on it
- ⚠Pairing with a same-lightness hue — edges vibrate
Meaning and mood
What a colour in this family tends to signal, and how this particular chroma and lightness change the reading.
Violet sits between the warmth of red and the calm of blue, so it reads as inventive without reading as risky. Current shorthand for software craft.
The muted chroma softens the association — it reads considered rather than loud, which suits long-form and data-heavy screens. The lightness keeps it airy and approachable.
Deep violets swallow detail on screens with poor gamma; check it on a cheap laptop panel.
- FormalityMedium
- EnergyMedium
- Weight25/100
- TemperatureCool
- ApproachabilityBalanced
Colour associations are cultural and vary by market. Treat these as a starting point for a conversation with your audience, not a finding about them.
Similar colors
One move away from this hex in each direction. Every swatch is its own page.
Color relationships
The wheel positions with their names attached, so you can grab the one you actually need.
| Complementary | #C4CBB2 | Directly opposite — maximum tension | |
| Analogous left | #B2B7CB | Neighbour, quieter | |
| Analogous right | #C5B2CB | Neighbour, quieter | |
| Split-complement 1 | #CBC5B2 | Contrast without the clash | |
| Split-complement 2 | #B7CBB2 | Contrast without the clash | |
| Triadic 1 | #CBB9B2 | Even thirds — balanced and loud | |
| Triadic 2 | #B2CBB9 | Even thirds — balanced and loud | |
| Tetradic | #CBB2B7 | Fourth corner of the square scheme |
#b9b2cb sits at 257°. Every dot is a harmony position and links to its own page in the table alongside.
RGB percentages
CMYK percentages
Total ink coverage is 42%. Most commercial presses cap around 300% — above that, sheets stop drying properly.
Color previews
#b9b2cb text on a black background
contrast 10.29:1
#b9b2cb text on a white background
contrast 2.04:1
#b9b2cb on grey
1.86:1
#b9b2cb on its own surface
1.89:1
#b9b2cb on its dark surface
8.66:1
CSS3 live lab
The quick brown fox
color: #b9b2cb;
background-color: #b9b2cb;
Glowing headline
text-shadow: 2px 2px 8px #b9b2cb;
Soft neon halo
text-shadow: 0 0 14px rgba(185, 178, 203, 0.45);
box-shadow: 0 12px 32px -8px rgba(185, 178, 203, 0.45);
border: 3px solid #b9b2cb; background: linear-gradient(135deg, #b9b2cb, #CAB2CB);
Gradient headline
background: linear-gradient(90deg, #b9b2cb, #CBB2C6); -webkit-background-clip: text; color: transparent;
outline: 2px solid #b9b2cb; outline-offset: 3px;
Marked up text
text-decoration-color: #b9b2cb; caret-color: #b9b2cb;
border-left: 4px solid #b9b2cb;
background: #F1F0F5; box-shadow: inset 0 0 0 2px #b9b2cb;
background: conic-gradient(#b9b2cb 68%, #e2e8f0 0);
Transparency
What each alpha value actually composites to. The top row is #b9b2cb over white; the bottom row is the same alpha over a checkerboard, so you can see what survives on a photo or a video.
Bottom row of hexes is the flattened result over white — use those when a design tool refuses transparency, or when you need a solid fallback.
rgba(185, 178, 203, 0.5) rgb(185 178 203 / 50%) #b9b2cb80 hsl(257 19% 75% / 50%) color-mix(in srgb, #b9b2cb 50%, transparent)
| Alpha | 8-digit hex | Flat on white |
|---|---|---|
| 10% | #b9b2cb1a | #F8F7FA |
| 20% | #b9b2cb33 | #F1F0F5 |
| 40% | #b9b2cb66 | #E3E0EA |
| 60% | #b9b2cb99 | #D5D1E0 |
| 80% | #b9b2cbcc | #C7C1D5 |
Gradients from #b9b2cb
Six recipes, each built from this hex and shown with the exact CSS that produced it.
background: linear-gradient(135deg, #DAD7E4, #b9b2cb 45%, #3A334C);
background: linear-gradient(120deg, #b9b2cb, #BFA0BE);
background: linear-gradient(90deg, #b9b2cb, #C4CBB2);
background: radial-gradient(120% 120% at 20% 0%, #EBE9F0 0%, #b9b2cb 45%, #3A334C 100%);
background: linear-gradient(180deg, #F7F6F9, #ffffff);
background: radial-gradient(60% 60% at 15% 20%, #D0D5E0 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #D5C4D7 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #3A334C 0%, transparent 65%), #b9b2cb;
Monochromatic scale
Palettes built from #b9b2cb
Shades — darker
Tints — lighter
Tones — desaturated
Color harmonies
Nearest named colors
Ranked with CIEDE2000 across all 139 CSS keywords. Under ΔE 2 the eye stops telling them apart; over ΔE 10 they are plainly different colors.
Closest color with a full write-up: Thistle (#d8bfd8) — ΔE2000 7.6 away, with its history, psychology and brand usage.
#b9b2cb in the real world
Where a color in this family tends to land, and the interface roles it is usually asked to play.
Converts to four-color process without much drama. Proof it anyway.
Holds up across typical panel gamma. Still worth checking on an uncalibrated laptop, where mid-tones shift most.
Usable as-is on a dark surface at 10.29:1.
Explore nearby colors
Small, deliberate steps away from this hex — useful when you are hunting for the version of a colour that finally feels right.
#b9b2cb, answered
What color is #b9b2cb?
#b9b2cb is a light soft violet, closest to Thistle (ΔE2000 7.6). It sits at 257° on the hue wheel with 19% saturation and 75% lightness, which reads as cool.
What is the RGB value of #b9b2cb?
rgb(185, 178, 203) — 185 red, 178 green and 203 blue out of 255, or 72.5% / 69.8% / 79.6% by channel.
What is #b9b2cb in HSL and HSV?
hsl(257, 19%, 75%) and hsv(257, 12%, 80%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.
Is #b9b2cb a light or a dark color?
It is a mid-tone. Relative luminance is 0.4647 and perceived brightness is 72%, so black text on it reaches 10.29:1.
Should I use black or white text on #b9b2cb?
Black. It scores 10.29:1 against #b9b2cb, versus 2.04:1 for white — AAA at any size.
Is #b9b2cb accessible on a white background?
#b9b2cb on white scores 2.04:1, which fails WCAG AA at every size. Darken it to #7C6F9E to reach 4.5:1, or #5D5279 for 7:1.
What is the complementary color of #b9b2cb?
#C4CBB2 sits directly opposite on the wheel. Softer options are the split-complements #CBC5B2 and #B7CBB2, which give the same contrast with far less vibration.
What colors go well with #b9b2cb?
For interface work: #F7F6F9 as the surface, #D3CEDE for borders, #695C89 for secondary text, #7D7E4E as an accent and #3A334C for hover and pressed states. For a palette, the analogous pair #B2B7CB and #C5B2CB stays calm, while #C4CBB2 is the loudest partner.
What is #b9b2cb in CMYK for printing?
cmyk(9%, 12%, 0%, 20%). This is a screen-to-ink approximation — ask your printer for a proof before committing to a run.
Is #b9b2cb warm or cool?
Cool — it scores 63 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #C2B2CB; nudged cooler, #B1B3CC.
Which Tailwind color is closest to #b9b2cb?
The zinc family — its 500 step is #71717a, ΔE2000 23.6 away. That is a visible difference, so define #b9b2cb as a custom token rather than reaching for the built-in.
How do I use #b9b2cb in Tailwind CSS?
Inline it as an arbitrary value with bg-[#b9b2cb] or text-[#b9b2cb], or register the whole ramp under theme.extend.colors.brand so you get bg-brand-500 and friends. The generated 50–950 scale on this page is ready to paste into your config.
What is #b9b2cb with 50% opacity?
rgba(185, 178, 203, 0.5), or #b9b2cb80 in eight-digit hex. Over white that composites to #DCD9E5; over black, #5D5966.
Is #b9b2cb a web-safe color?
No. The nearest web-safe colour is #CC99CC, ΔE2000 12.9 away. The palette only matters for legacy displays and some email clients now.
What does the color #b9b2cb mean?
As a violet, it reads creative, premium, modern. Violet sits between the warmth of red and the calm of blue, so it reads as inventive without reading as risky. Current shorthand for software craft. At this moderate chroma the association is present but not shouted.
What gradient works with #b9b2cb?
The safest is same-hue elevation: linear-gradient(135deg, #DAD7E4, #b9b2cb 45%, #3A334C). For more colour, a short hue run to #BFA0BE keeps it rich without turning muddy.
Work with #b9b2cb in the Color Lab
Every tool opens with this colour already loaded.
Every value on this page is computed from #b9b2cb at request time — conversions, contrast ratios and ΔE distances are calculated, never looked up.