Light Gray (Neutral)
#C3DAD8
RGB: 195, 218, 216
Color OverviewHEX #C3DAD8

#C3DAD8 Color Code Information

In the RGB color space, #C3DAD8 is composed of 76% red, 85% green, and 85% blue. In the HSL color space, it has a hue of 175°, saturation of 24%, and lightness of 81%.

HEX
#C3DAD8
RGB
195, 218, 216
HSL
175°, 24%, 81%
HSV
175°, 11%, 85%
CMYK
11%, 0%, 1%, 15%
Name Match
Light Gray
Closest Standard

Shades of #C3DAD8 (Darker Variations)

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

Tints of #C3DAD8 (Lighter Variations)

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

Tones of #C3DAD8 (Muted Variations)

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

Color Harmonies for #C3DAD8

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

Developer Code Snippets & Tailwind CSS

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

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