Ghost White (Neutral)
#FDF6FF
RGB: 253, 246, 255
Color OverviewHEX #FDF6FF

#FDF6FF Color Code Information

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

HEX
#FDF6FF
RGB
253, 246, 255
HSL
287°, 100%, 98%
HSV
287°, 4%, 100%
CMYK
1%, 4%, 0%, 0%
Name Match
Ghost White
Closest Standard

Shades of #FDF6FF (Darker Variations)

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

Tints of #FDF6FF (Lighter Variations)

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

Tones of #FDF6FF (Muted Variations)

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

Color Harmonies for #FDF6FF

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

Developer Code Snippets & Tailwind CSS

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

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