Gainsboro (Neutral)
#EAE6DF
RGB: 234, 230, 223
Color OverviewHEX #EAE6DF

#EAE6DF Color Code Information

In the RGB color space, #EAE6DF is composed of 92% red, 90% green, and 87% blue. In the HSL color space, it has a hue of 38°, saturation of 21%, and lightness of 90%.

HEX
#EAE6DF
RGB
234, 230, 223
HSL
38°, 21%, 90%
HSV
38°, 5%, 92%
CMYK
0%, 2%, 5%, 8%
Name Match
Gainsboro
Closest Standard

Shades of #EAE6DF (Darker Variations)

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

Tints of #EAE6DF (Lighter Variations)

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

Tones of #EAE6DF (Muted Variations)

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

Color Harmonies for #EAE6DF

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

Developer Code Snippets & Tailwind CSS

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

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