Gainsboro (Neutral)
#E2ECDF
RGB: 226, 236, 223
Color OverviewHEX #E2ECDF

#E2ECDF Color Code Information

In the RGB color space, #E2ECDF is composed of 89% red, 93% green, and 87% blue. In the HSL color space, it has a hue of 106°, saturation of 25%, and lightness of 90%.

HEX
#E2ECDF
RGB
226, 236, 223
HSL
106°, 25%, 90%
HSV
106°, 6%, 93%
CMYK
4%, 0%, 6%, 7%
Name Match
Gainsboro
Closest Standard

Shades of #E2ECDF (Darker Variations)

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

Tints of #E2ECDF (Lighter Variations)

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

Tones of #E2ECDF (Muted Variations)

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

Color Harmonies for #E2ECDF

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

Developer Code Snippets & Tailwind CSS

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

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