Linen (Neutral)
#EEE8EC
RGB: 238, 232, 236
Color OverviewHEX #EEE8EC

#EEE8EC Color Code Information

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

HEX
#EEE8EC
RGB
238, 232, 236
HSL
320°, 15%, 92%
HSV
320°, 3%, 93%
CMYK
0%, 3%, 1%, 7%
Name Match
Linen
Closest Standard

Shades of #EEE8EC (Darker Variations)

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

Tints of #EEE8EC (Lighter Variations)

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

Tones of #EEE8EC (Muted Variations)

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

Color Harmonies for #EEE8EC

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

Developer Code Snippets & Tailwind CSS

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

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