Light Gray (Neutral)
#CBCBCF
RGB: 203, 203, 207
Color OverviewHEX #CBCBCF

#CBCBCF Color Code Information

In the RGB color space, #CBCBCF is composed of 80% red, 80% green, and 81% blue. In the HSL color space, it has a hue of 240°, saturation of 4%, and lightness of 80%.

HEX
#CBCBCF
RGB
203, 203, 207
HSL
240°, 4%, 80%
HSV
240°, 2%, 81%
CMYK
2%, 2%, 0%, 19%
Name Match
Light Gray
Closest Standard

Shades of #CBCBCF (Darker Variations)

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

Tints of #CBCBCF (Lighter Variations)

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

Tones of #CBCBCF (Muted Variations)

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

Color Harmonies for #CBCBCF

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

Developer Code Snippets & Tailwind CSS

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

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