Light Gray (Neutral)
#CAD2CC
RGB: 202, 210, 204
Color OverviewHEX #CAD2CC

#CAD2CC Color Code Information

In the RGB color space, #CAD2CC is composed of 79% red, 82% green, and 80% blue. In the HSL color space, it has a hue of 135°, saturation of 8%, and lightness of 81%.

HEX
#CAD2CC
RGB
202, 210, 204
HSL
135°, 8%, 81%
HSV
135°, 4%, 82%
CMYK
4%, 0%, 3%, 18%
Name Match
Light Gray
Closest Standard

Shades of #CAD2CC (Darker Variations)

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

Tints of #CAD2CC (Lighter Variations)

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

Tones of #CAD2CC (Muted Variations)

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

Color Harmonies for #CAD2CC

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

Developer Code Snippets & Tailwind CSS

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

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