Lavender (Purple)
#E7E9EE
RGB: 231, 233, 238
Color OverviewHEX #E7E9EE

#E7E9EE Color Code Information

In the RGB color space, #E7E9EE is composed of 91% red, 91% green, and 93% blue. In the HSL color space, it has a hue of 223°, saturation of 17%, and lightness of 92%.

HEX
#E7E9EE
RGB
231, 233, 238
HSL
223°, 17%, 92%
HSV
223°, 3%, 93%
CMYK
3%, 2%, 0%, 7%
Name Match
Lavender
Closest Standard

Shades of #E7E9EE (Darker Variations)

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

Tints of #E7E9EE (Lighter Variations)

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

Tones of #E7E9EE (Muted Variations)

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

Color Harmonies for #E7E9EE

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

Developer Code Snippets & Tailwind CSS

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

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