White Smoke (Neutral)
#F7F9F8
RGB: 247, 249, 248
Color OverviewHEX #F7F9F8

#F7F9F8 Color Code Information

In the RGB color space, #F7F9F8 is composed of 97% red, 98% green, and 97% blue. In the HSL color space, it has a hue of 150°, saturation of 14%, and lightness of 97%.

HEX
#F7F9F8
RGB
247, 249, 248
HSL
150°, 14%, 97%
HSV
150°, 1%, 98%
CMYK
1%, 0%, 0%, 2%
Name Match
White Smoke
Closest Standard

Shades of #F7F9F8 (Darker Variations)

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

Tints of #F7F9F8 (Lighter Variations)

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

Tones of #F7F9F8 (Muted Variations)

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

Color Harmonies for #F7F9F8

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

Developer Code Snippets & Tailwind CSS

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

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