Gainsboro (Neutral)
#E0E3E1
RGB: 224, 227, 225
Color OverviewHEX #E0E3E1

#E0E3E1 Color Code Information

In the RGB color space, #E0E3E1 is composed of 88% red, 89% green, and 88% blue. In the HSL color space, it has a hue of 140°, saturation of 5%, and lightness of 88%.

HEX
#E0E3E1
RGB
224, 227, 225
HSL
140°, 5%, 88%
HSV
140°, 1%, 89%
CMYK
1%, 0%, 1%, 11%
Name Match
Gainsboro
Closest Standard

Shades of #E0E3E1 (Darker Variations)

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

Tints of #E0E3E1 (Lighter Variations)

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

Tones of #E0E3E1 (Muted Variations)

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

Color Harmonies for #E0E3E1

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

Developer Code Snippets & Tailwind CSS

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

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