Ghost White (Neutral)
#FDF9FF
RGB: 253, 249, 255
Color OverviewHEX #FDF9FF

#FDF9FF Color Code Information

In the RGB color space, #FDF9FF is composed of 99% red, 98% green, and 100% blue. In the HSL color space, it has a hue of 280°, saturation of 100%, and lightness of 99%.

HEX
#FDF9FF
RGB
253, 249, 255
HSL
280°, 100%, 99%
HSV
280°, 2%, 100%
CMYK
1%, 2%, 0%, 0%
Name Match
Ghost White
Closest Standard

Shades of #FDF9FF (Darker Variations)

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

Tints of #FDF9FF (Lighter Variations)

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

Tones of #FDF9FF (Muted Variations)

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

Color Harmonies for #FDF9FF

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

Developer Code Snippets & Tailwind CSS

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

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