Light Gray (Neutral)
#CDCFCC
RGB: 205, 207, 204
Color OverviewHEX #CDCFCC

#CDCFCC Color Code Information

In the RGB color space, #CDCFCC is composed of 80% red, 81% green, and 80% blue. In the HSL color space, it has a hue of 100°, saturation of 3%, and lightness of 81%.

HEX
#CDCFCC
RGB
205, 207, 204
HSL
100°, 3%, 81%
HSV
100°, 1%, 81%
CMYK
1%, 0%, 1%, 19%
Name Match
Light Gray
Closest Standard

Shades of #CDCFCC (Darker Variations)

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

Tints of #CDCFCC (Lighter Variations)

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

Tones of #CDCFCC (Muted Variations)

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

Color Harmonies for #CDCFCC

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

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