Gainsboro (Neutral)
#EED7DB
RGB: 238, 215, 219
Color OverviewHEX #EED7DB

#EED7DB Color Code Information

In the RGB color space, #EED7DB is composed of 93% red, 84% green, and 86% blue. In the HSL color space, it has a hue of 350°, saturation of 40%, and lightness of 89%.

HEX
#EED7DB
RGB
238, 215, 219
HSL
350°, 40%, 89%
HSV
350°, 10%, 93%
CMYK
0%, 10%, 8%, 7%
Name Match
Gainsboro
Closest Standard

Shades of #EED7DB (Darker Variations)

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

Tints of #EED7DB (Lighter Variations)

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

Tones of #EED7DB (Muted Variations)

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

Color Harmonies for #EED7DB

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

Developer Code Snippets & Tailwind CSS

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

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