Gainsboro (Neutral)
#CEFBE2
RGB: 206, 251, 226
Color OverviewHEX #CEFBE2

#CEFBE2 Color Code Information

In the RGB color space, #CEFBE2 is composed of 81% red, 98% green, and 89% blue. In the HSL color space, it has a hue of 147°, saturation of 85%, and lightness of 90%.

HEX
#CEFBE2
RGB
206, 251, 226
HSL
147°, 85%, 90%
HSV
147°, 18%, 98%
CMYK
18%, 0%, 10%, 2%
Name Match
Gainsboro
Closest Standard

Shades of #CEFBE2 (Darker Variations)

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

Tints of #CEFBE2 (Lighter Variations)

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

Tones of #CEFBE2 (Muted Variations)

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

Color Harmonies for #CEFBE2

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

Developer Code Snippets & Tailwind CSS

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

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