Action
Primary button
Use the controls above or point to and press the button to inspect its visual states.
Color reference
Light Neutral
This is a light neutral because its OKLCH chroma falls below the deterministic hue-family threshold. Its closest standardized CSS named color is Dark Gray (#A9A9A9), measured with straight-line OKLab distance.
Copyable values
Values are calculated from the same opaque sRGB color. Display rounding does not alter the internal calculations.
| Format | Value | Action |
|---|---|---|
| HEX | #B5ADA5 |
|
| RGB | rgb(181 173 165) |
|
| HSL | hsl(30 9.76% 67.84%) |
|
| HSV | hsv(30 8.84% 70.98%) |
|
| HWB | hwb(30 64.71% 29.02%) |
|
| XYZ D65 | color(xyz-d65 0.407894 0.424277 0.416391) |
|
| LAB | lab(71.2276% 1.9059 5.1986) |
|
| LCH | lch(71.2276% 5.537 69.8661) |
|
| OKLAB | oklab(75.1983% 0.005556 0.013482) |
|
| OKLCH | oklch(75.1983% 0.014582 67.6035) |
Real-world test
Preview the source as a primary action, subtle status, form treatment, and card surface. Persistent state controls help touch and keyboard users inspect the same normal, hover, and active colors.
Action
Use the controls above or point to and press the button to inspect its visual states.
Status
A 12% source tint over white provides the background; readable text is selected separately.
Form
Source ring on white: 2.21:1 · does not meet the 3:1 non-text threshold where applicable.
Surface
The selected state becomes the card surface with its strongest black-or-white text pairing.
Accessibility diagnostics
Each result applies only to the named foreground, background, text size, and requirement. It is not a complete accessibility or component-conformance claim.
On white
On black
Use guidance
Not recommended
#B5ADA5 does not reach 4.5:1 on white or Hue Codex paper, so it should not be used there for normal-sized text.
Needs a boundary
Against Hue Codex paper, the color reaches only 2.12:1. Use a contrasting border or another non-color boundary for meaningful controls and graphics.
Readable pairing available
Black text provides the stronger black/white pairing on #B5ADA5 at 9.49:1. This validates only that text pair, not hover, focus, disabled, or adjacent-color states.
Restrained neutral
Its OKLCH chroma of 0.0146 is restrained, which is generally more suitable for surfaces, borders, or neutral system roles than for a vivid accent.
Pair available
The stronger black/white background is black at 9.49:1. Always retest against the actual rendered background and text size.
Tested backgrounds
| Pair | Background | Contrast ratio |
|---|---|---|
| Black#000000 | 9.49:1 | |
| Hue Codex ink#10212B | 7.44:1 | |
| White#FFFFFF | 2.21:1 | |
| Hue Codex paper#FBFAF5 | 2.12:1 | |
| Soft neutral#F2EFE6 | 1.93:1 |
Design-system starting point
The source color is preserved at the nearest lightness step. Other swatches keep its OKLCH hue, moderate chroma toward the extremes, and reduce chroma only when needed to remain in sRGB.
This is a Hue Codex reference scale, not a claim that the values match Tailwind, Material, or another framework’s named palette.
Adjust the #B5ADA5 scale in Tints, Shades & TonesColor relationships
Hue rotations use OKLCH while preserving lightness and requested chroma. When a rotated result falls outside sRGB, chroma is reduced deterministically and disclosed.
Its OKLCH chroma is too low for hue rotation to produce a trustworthy complementary or triadic recommendation. Use the lightness scale or pair it with a deliberately selected accent instead.
Distance matching
Matches use straight-line OKLab distance ×100. A smaller value means the coordinates are closer in this model; it is not a claim that two tokens are interchangeable in a design system.
CSS named color
#A9A9A9 OKLab distance ×100: 2.25
Tailwind v4 default
oklch(73.7% 0.021 106.9)
OKLab distance ×100: 2.01 · sRGB preview #ABAB9C
Print boundary
Reliable print matching needs licensed reference data plus a defined ink, paper, profile, and viewing condition.
Read the print methodologyColor-vision screening
These encoded-sRGB matrix previews are screening approximations. They help reveal possible color-only distinctions but do not reproduce every person’s vision or establish accessibility conformance.
Red-vision deficiency approximation
Green-vision deficiency approximation
Blue-yellow deficiency approximation
Monochromatic-vision approximation
Ready to use
Exports preserve the source, readable foreground, and generated 50–900 scale. Tailwind v4 CSS-first and Tailwind v3 JavaScript-config formats are labeled separately.
Semantic aliases and the complete 50–900 scale.
:root {
--color-primary: #B5ADA5;
--color-on-primary: #000000;
--color-primary-oklch: oklch(75.1983% 0.014582 67.6035);
--color-primary-50: #F9F4EF;
--color-primary-100: #E3DDD7;
--color-primary-200: #CAC3BC;
--color-primary-300: #B5ADA5;
--color-primary-400: #989189;
--color-primary-500: #807972;
--color-primary-600: #68625B;
--color-primary-700: #524C46;
--color-primary-800: #3C3731;
--color-primary-900: #28231E;
}
Current @theme syntax for bg-brand, text-brand, and scale utilities.
@import "tailwindcss";
@theme {
--color-brand: #B5ADA5;
--color-brand-foreground: #000000;
--color-brand-50: #F9F4EF;
--color-brand-100: #E3DDD7;
--color-brand-200: #CAC3BC;
--color-brand-300: #B5ADA5;
--color-brand-400: #989189;
--color-brand-500: #807972;
--color-brand-600: #68625B;
--color-brand-700: #524C46;
--color-brand-800: #3C3731;
--color-brand-900: #28231E;
}
CommonJS theme.extend.colors for JavaScript-config projects.
module.exports = {
theme: {
extend: {
colors: {
brand: {
'50': '#F9F4EF',
'100': '#E3DDD7',
'200': '#CAC3BC',
'300': '#B5ADA5',
'400': '#989189',
'500': '#807972',
'600': '#68625B',
'700': '#524C46',
'800': '#3C3731',
'900': '#28231E',
DEFAULT: '#B5ADA5',
foreground: '#000000',
},
},
},
},
};
Semantic source, foreground, OKLCH, and scale variables.
$color-primary: #B5ADA5;
$color-on-primary: #000000;
$color-primary-oklch: oklch(75.1983% 0.014582 67.6035);
$color-primary-50: #F9F4EF;
$color-primary-100: #E3DDD7;
$color-primary-200: #CAC3BC;
$color-primary-300: #B5ADA5;
$color-primary-400: #989189;
$color-primary-500: #807972;
$color-primary-600: #68625B;
$color-primary-700: #524C46;
$color-primary-800: #3C3731;
$color-primary-900: #28231E;
Static fallbacks followed by OKLab tint and shade declarations.
:root {
--color-primary: #B5ADA5;
--color-primary-tint: #CAC3BC;
--color-primary-tint: color-mix(in oklab, var(--color-primary) 72%, white);
--color-primary-shade: #524C46;
--color-primary-shade: color-mix(in oklab, var(--color-primary) 82%, black);
}
Source formats, readable text, and the generated scale.
{
"name": "Light Neutral",
"hex": "#B5ADA5",
"rgb": "rgb(181 173 165)",
"oklch": "oklch(75.1983% 0.014582 67.6035)",
"recommendedText": "#000000",
"scale": {
"50": "#F9F4EF",
"100": "#E3DDD7",
"200": "#CAC3BC",
"300": "#B5ADA5",
"400": "#989189",
"500": "#807972",
"600": "#68625B",
"700": "#524C46",
"800": "#3C3731",
"900": "#28231E"
}
}
Continue the decision
Reference values are a starting point. Test the color in its real role, background, states, typography, and surrounding palette before shipping.