Gainsboro (Neutral)
#E3DAEC
RGB: 227, 218, 236
Color OverviewHEX #E3DAEC

#E3DAEC Color Code Information

In the RGB color space, #E3DAEC is composed of 89% red, 85% green, and 93% blue. In the HSL color space, it has a hue of 270°, saturation of 32%, and lightness of 89%.

HEX
#E3DAEC
RGB
227, 218, 236
HSL
270°, 32%, 89%
HSV
270°, 8%, 93%
CMYK
4%, 8%, 0%, 7%
Name Match
Gainsboro
Closest Standard

Shades of #E3DAEC (Darker Variations)

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

Tints of #E3DAEC (Lighter Variations)

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

Tones of #E3DAEC (Muted Variations)

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

Color Harmonies for #E3DAEC

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

Developer Code Snippets & Tailwind CSS

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

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