Light Gray (Neutral)
#D3CCD7
RGB: 211, 204, 215
Color OverviewHEX #D3CCD7

#D3CCD7 Color Code Information

In the RGB color space, #D3CCD7 is composed of 83% red, 80% green, and 84% blue. In the HSL color space, it has a hue of 278°, saturation of 12%, and lightness of 82%.

HEX
#D3CCD7
RGB
211, 204, 215
HSL
278°, 12%, 82%
HSV
278°, 5%, 84%
CMYK
2%, 5%, 0%, 16%
Name Match
Light Gray
Closest Standard

Shades of #D3CCD7 (Darker Variations)

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

Tints of #D3CCD7 (Lighter Variations)

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

Tones of #D3CCD7 (Muted Variations)

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

Color Harmonies for #D3CCD7

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

Developer Code Snippets & Tailwind CSS

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

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