Lavender (Purple)
#EEE2EE
RGB: 238, 226, 238
Color OverviewHEX #EEE2EE

#EEE2EE Color Code Information

In the RGB color space, #EEE2EE is composed of 93% red, 89% green, and 93% blue. In the HSL color space, it has a hue of 300°, saturation of 26%, and lightness of 91%.

HEX
#EEE2EE
RGB
238, 226, 238
HSL
300°, 26%, 91%
HSV
300°, 5%, 93%
CMYK
0%, 5%, 0%, 7%
Name Match
Lavender
Closest Standard

Shades of #EEE2EE (Darker Variations)

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

Tints of #EEE2EE (Lighter Variations)

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

Tones of #EEE2EE (Muted Variations)

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

Color Harmonies for #EEE2EE

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

Developer Code Snippets & Tailwind CSS

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

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