Cream (Yellow)
#FFF9CC
RGB: 255, 249, 204
Color OverviewHEX #FFF9CC

#FFF9CC Color Code Information

In the RGB color space, #FFF9CC is composed of 100% red, 98% green, and 80% blue. In the HSL color space, it has a hue of 53°, saturation of 100%, and lightness of 90%.

HEX
#FFF9CC
RGB
255, 249, 204
HSL
53°, 100%, 90%
HSV
53°, 20%, 100%
CMYK
0%, 2%, 20%, 0%
Name Match
Cream
Closest Standard

Shades of #FFF9CC (Darker Variations)

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

Tints of #FFF9CC (Lighter Variations)

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

Tones of #FFF9CC (Muted Variations)

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

Color Harmonies for #FFF9CC

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

Developer Code Snippets & Tailwind CSS

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

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