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

#FAFAFB Color Code Information

In the RGB color space, #FAFAFB is composed of 98% red, 98% green, and 98% blue. In the HSL color space, it has a hue of 240°, saturation of 11%, and lightness of 98%.

HEX
#FAFAFB
RGB
250, 250, 251
HSL
240°, 11%, 98%
HSV
240°, 0%, 98%
CMYK
0%, 0%, 0%, 2%
Name Match
Ghost White
Closest Standard

Shades of #FAFAFB (Darker Variations)

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

Tints of #FAFAFB (Lighter Variations)

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

Tones of #FAFAFB (Muted Variations)

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

Color Harmonies for #FAFAFB

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

Developer Code Snippets & Tailwind CSS

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

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