Light Gray (Neutral)
#CCC3CF
RGB: 204, 195, 207
Color OverviewHEX #CCC3CF

#CCC3CF Color Code Information

In the RGB color space, #CCC3CF is composed of 80% red, 76% green, and 81% blue. In the HSL color space, it has a hue of 285°, saturation of 11%, and lightness of 79%.

HEX
#CCC3CF
RGB
204, 195, 207
HSL
285°, 11%, 79%
HSV
285°, 6%, 81%
CMYK
1%, 6%, 0%, 19%
Name Match
Light Gray
Closest Standard

Shades of #CCC3CF (Darker Variations)

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

Tints of #CCC3CF (Lighter Variations)

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

Tones of #CCC3CF (Muted Variations)

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

Color Harmonies for #CCC3CF

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

Developer Code Snippets & Tailwind CSS

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

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