Lavender (Purple)
#EAE2FD
RGB: 234, 226, 253
Color OverviewHEX #EAE2FD

#EAE2FD Color Code Information

In the RGB color space, #EAE2FD is composed of 92% red, 89% green, and 99% blue. In the HSL color space, it has a hue of 258°, saturation of 87%, and lightness of 94%.

HEX
#EAE2FD
RGB
234, 226, 253
HSL
258°, 87%, 94%
HSV
258°, 11%, 99%
CMYK
8%, 11%, 0%, 1%
Name Match
Lavender
Closest Standard

Shades of #EAE2FD (Darker Variations)

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

Tints of #EAE2FD (Lighter Variations)

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

Tones of #EAE2FD (Muted Variations)

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

Color Harmonies for #EAE2FD

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

Developer Code Snippets & Tailwind CSS

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

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