White Smoke (Neutral)
#F5F4EE
RGB: 245, 244, 238
Color OverviewHEX #F5F4EE

#F5F4EE Color Code Information

In the RGB color space, #F5F4EE is composed of 96% red, 96% green, and 93% blue. In the HSL color space, it has a hue of 51°, saturation of 26%, and lightness of 95%.

HEX
#F5F4EE
RGB
245, 244, 238
HSL
51°, 26%, 95%
HSV
51°, 3%, 96%
CMYK
0%, 0%, 3%, 4%
Name Match
White Smoke
Closest Standard

Shades of #F5F4EE (Darker Variations)

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

Tints of #F5F4EE (Lighter Variations)

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

Tones of #F5F4EE (Muted Variations)

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

Color Harmonies for #F5F4EE

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

Developer Code Snippets & Tailwind CSS

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

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