Ghost White (Neutral)
#FDF7FF
RGB: 253, 247, 255
Color OverviewHEX #FDF7FF

#FDF7FF Color Code Information

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

HEX
#FDF7FF
RGB
253, 247, 255
HSL
285°, 100%, 98%
HSV
285°, 3%, 100%
CMYK
1%, 3%, 0%, 0%
Name Match
Ghost White
Closest Standard

Shades of #FDF7FF (Darker Variations)

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

Tints of #FDF7FF (Lighter Variations)

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

Tones of #FDF7FF (Muted Variations)

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

Color Harmonies for #FDF7FF

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

Developer Code Snippets & Tailwind CSS

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

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