Light Gray (Neutral)
#C7CCCF
RGB: 199, 204, 207
Color OverviewHEX #C7CCCF

#C7CCCF Color Code Information

In the RGB color space, #C7CCCF is composed of 78% red, 80% green, and 81% blue. In the HSL color space, it has a hue of 202°, saturation of 8%, and lightness of 80%.

HEX
#C7CCCF
RGB
199, 204, 207
HSL
202°, 8%, 80%
HSV
202°, 4%, 81%
CMYK
4%, 1%, 0%, 19%
Name Match
Light Gray
Closest Standard

Shades of #C7CCCF (Darker Variations)

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

Tints of #C7CCCF (Lighter Variations)

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

Tones of #C7CCCF (Muted Variations)

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

Color Harmonies for #C7CCCF

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

Developer Code Snippets & Tailwind CSS

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

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