Floral White (Neutral)
#F9F9EE
RGB: 249, 249, 238
Color OverviewHEX #F9F9EE

#F9F9EE Color Code Information

In the RGB color space, #F9F9EE is composed of 98% red, 98% green, and 93% blue. In the HSL color space, it has a hue of 60°, saturation of 48%, and lightness of 95%.

HEX
#F9F9EE
RGB
249, 249, 238
HSL
60°, 48%, 95%
HSV
60°, 4%, 98%
CMYK
0%, 0%, 4%, 2%
Name Match
Floral White
Closest Standard

Shades of #F9F9EE (Darker Variations)

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

Tints of #F9F9EE (Lighter Variations)

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

Tones of #F9F9EE (Muted Variations)

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

Color Harmonies for #F9F9EE

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

Developer Code Snippets & Tailwind CSS

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

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