Light Gray (Neutral)
#D5D8B8
RGB: 213, 216, 184
Color OverviewHEX #D5D8B8

#D5D8B8 Color Code Information

In the RGB color space, #D5D8B8 is composed of 84% red, 85% green, and 72% blue. In the HSL color space, it has a hue of 66°, saturation of 29%, and lightness of 78%.

HEX
#D5D8B8
RGB
213, 216, 184
HSL
66°, 29%, 78%
HSV
66°, 15%, 85%
CMYK
1%, 0%, 15%, 15%
Name Match
Light Gray
Closest Standard

Shades of #D5D8B8 (Darker Variations)

Shades are created by progressively mixing the base color with black.

Tints of #D5D8B8 (Lighter Variations)

Tints are created by progressively mixing the base color with pure white.

Tones of #D5D8B8 (Muted Variations)

Tones are created by mixing the base color with true neutral gray.

Color Harmonies for #D5D8B8

Calculated color schemes based on classic color wheel angles for graphic and web design.

WCAG Accessibility Contrast Ratios

Verification against Web Content Accessibility Guidelines (WCAG 2.1) standards for web text readability.

Sample Text on #D5D8B8 Background
Contrast Ratio against Pure White (#FFFFFF):1.46 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #D5D8B8 Background
Contrast Ratio against Pure Black (#000000):14.34 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #D5D8B8;
}

.element {
  color: #D5D8B8;
  background-color: #D5D8B8;
  border-color: #D5D8B8;
}
Tailwind CSS v4 Utility Classes
<!-- Tailwind Arbitrary Values -->
<div className="bg-[#D5D8B8] text-[#D5D8B8] border-[#D5D8B8]">
  Content styled with #D5D8B8
</div>