Light Gray (Neutral)
#D8CCCD
RGB: 216, 204, 205
Color OverviewHEX #D8CCCD

#D8CCCD Color Code Information

In the RGB color space, #D8CCCD is composed of 85% red, 80% green, and 80% blue. In the HSL color space, it has a hue of 355°, saturation of 13%, and lightness of 82%.

HEX
#D8CCCD
RGB
216, 204, 205
HSL
355°, 13%, 82%
HSV
355°, 6%, 85%
CMYK
0%, 6%, 5%, 15%
Name Match
Light Gray
Closest Standard

Shades of #D8CCCD (Darker Variations)

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

Tints of #D8CCCD (Lighter Variations)

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

Tones of #D8CCCD (Muted Variations)

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

Color Harmonies for #D8CCCD

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 #D8CCCD Background
Contrast Ratio against Pure White (#FFFFFF):1.56 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #D8CCCD Background
Contrast Ratio against Pure Black (#000000):13.44 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

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

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