Gainsboro (Neutral)
#E2EEE4
RGB: 226, 238, 228
Color OverviewHEX #E2EEE4

#E2EEE4 Color Code Information

In the RGB color space, #E2EEE4 is composed of 89% red, 93% green, and 89% blue. In the HSL color space, it has a hue of 130°, saturation of 26%, and lightness of 91%.

HEX
#E2EEE4
RGB
226, 238, 228
HSL
130°, 26%, 91%
HSV
130°, 5%, 93%
CMYK
5%, 0%, 4%, 7%
Name Match
Gainsboro
Closest Standard

Shades of #E2EEE4 (Darker Variations)

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

Tints of #E2EEE4 (Lighter Variations)

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

Tones of #E2EEE4 (Muted Variations)

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

Color Harmonies for #E2EEE4

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

Developer Code Snippets & Tailwind CSS

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

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