Light Gray (Neutral)
#CCC5D3
RGB: 204, 197, 211
Color OverviewHEX #CCC5D3

#CCC5D3 Color Code Information

In the RGB color space, #CCC5D3 is composed of 80% red, 77% green, and 83% blue. In the HSL color space, it has a hue of 270°, saturation of 14%, and lightness of 80%.

HEX
#CCC5D3
RGB
204, 197, 211
HSL
270°, 14%, 80%
HSV
270°, 7%, 83%
CMYK
3%, 7%, 0%, 17%
Name Match
Light Gray
Closest Standard

Shades of #CCC5D3 (Darker Variations)

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

Tints of #CCC5D3 (Lighter Variations)

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

Tones of #CCC5D3 (Muted Variations)

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

Color Harmonies for #CCC5D3

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

Developer Code Snippets & Tailwind CSS

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

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