Light Gray (Neutral)
#DEC9CB
RGB: 222, 201, 203
Color OverviewHEX #DEC9CB

#DEC9CB Color Code Information

In the RGB color space, #DEC9CB is composed of 87% red, 79% green, and 80% blue. In the HSL color space, it has a hue of 354°, saturation of 24%, and lightness of 83%.

HEX
#DEC9CB
RGB
222, 201, 203
HSL
354°, 24%, 83%
HSV
354°, 9%, 87%
CMYK
0%, 9%, 9%, 13%
Name Match
Light Gray
Closest Standard

Shades of #DEC9CB (Darker Variations)

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

Tints of #DEC9CB (Lighter Variations)

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

Tones of #DEC9CB (Muted Variations)

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

Color Harmonies for #DEC9CB

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

Developer Code Snippets & Tailwind CSS

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

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