Floral White (Neutral)
#FDFCF2
RGB: 253, 252, 242
Color OverviewHEX #FDFCF2

#FDFCF2 Color Code Information

In the RGB color space, #FDFCF2 is composed of 99% red, 99% green, and 95% blue. In the HSL color space, it has a hue of 55°, saturation of 73%, and lightness of 97%.

HEX
#FDFCF2
RGB
253, 252, 242
HSL
55°, 73%, 97%
HSV
55°, 4%, 99%
CMYK
0%, 0%, 4%, 1%
Name Match
Floral White
Closest Standard

Shades of #FDFCF2 (Darker Variations)

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

Tints of #FDFCF2 (Lighter Variations)

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

Tones of #FDFCF2 (Muted Variations)

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

Color Harmonies for #FDFCF2

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

Developer Code Snippets & Tailwind CSS

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

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