Ghost White (Neutral)
#F6FAFB
RGB: 246, 250, 251
Color OverviewHEX #F6FAFB

#F6FAFB Color Code Information

In the RGB color space, #F6FAFB is composed of 96% red, 98% green, and 98% blue. In the HSL color space, it has a hue of 192°, saturation of 38%, and lightness of 97%.

HEX
#F6FAFB
RGB
246, 250, 251
HSL
192°, 38%, 97%
HSV
192°, 2%, 98%
CMYK
2%, 0%, 0%, 2%
Name Match
Ghost White
Closest Standard

Shades of #F6FAFB (Darker Variations)

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

Tints of #F6FAFB (Lighter Variations)

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

Tones of #F6FAFB (Muted Variations)

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

Color Harmonies for #F6FAFB

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

Developer Code Snippets & Tailwind CSS

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

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