Gainsboro (Neutral)
#E3D9E1
RGB: 227, 217, 225
Color OverviewHEX #E3D9E1

#E3D9E1 Color Code Information

In the RGB color space, #E3D9E1 is composed of 89% red, 85% green, and 88% blue. In the HSL color space, it has a hue of 312°, saturation of 15%, and lightness of 87%.

HEX
#E3D9E1
RGB
227, 217, 225
HSL
312°, 15%, 87%
HSV
312°, 4%, 89%
CMYK
0%, 4%, 1%, 11%
Name Match
Gainsboro
Closest Standard

Shades of #E3D9E1 (Darker Variations)

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

Tints of #E3D9E1 (Lighter Variations)

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

Tones of #E3D9E1 (Muted Variations)

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

Color Harmonies for #E3D9E1

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

Developer Code Snippets & Tailwind CSS

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

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