Light Gray (Neutral)
#C7D7C4
RGB: 199, 215, 196
Color OverviewHEX #C7D7C4

#C7D7C4 Color Code Information

In the RGB color space, #C7D7C4 is composed of 78% red, 84% green, and 77% blue. In the HSL color space, it has a hue of 111°, saturation of 19%, and lightness of 81%.

HEX
#C7D7C4
RGB
199, 215, 196
HSL
111°, 19%, 81%
HSV
111°, 9%, 84%
CMYK
7%, 0%, 9%, 16%
Name Match
Light Gray
Closest Standard

Shades of #C7D7C4 (Darker Variations)

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

Tints of #C7D7C4 (Lighter Variations)

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

Tones of #C7D7C4 (Muted Variations)

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

Color Harmonies for #C7D7C4

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

Developer Code Snippets & Tailwind CSS

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

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