Light Gray (Neutral)
#D2CEDE
RGB: 210, 206, 222
Color OverviewHEX #D2CEDE

#D2CEDE Color Code Information

In the RGB color space, #D2CEDE is composed of 82% red, 81% green, and 87% blue. In the HSL color space, it has a hue of 255°, saturation of 20%, and lightness of 84%.

HEX
#D2CEDE
RGB
210, 206, 222
HSL
255°, 20%, 84%
HSV
255°, 7%, 87%
CMYK
5%, 7%, 0%, 13%
Name Match
Light Gray
Closest Standard

Shades of #D2CEDE (Darker Variations)

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

Tints of #D2CEDE (Lighter Variations)

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

Tones of #D2CEDE (Muted Variations)

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

Color Harmonies for #D2CEDE

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

Developer Code Snippets & Tailwind CSS

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

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