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

#FFFFCC Color Code Information

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

HEX
#FFFFCC
RGB
255, 255, 204
HSL
60°, 100%, 90%
HSV
60°, 20%, 100%
CMYK
0%, 0%, 20%, 0%
Name Match
Cream
Closest Standard

Shades of #FFFFCC (Darker Variations)

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

Tints of #FFFFCC (Lighter Variations)

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

Tones of #FFFFCC (Muted Variations)

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

Color Harmonies for #FFFFCC

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

Developer Code Snippets & Tailwind CSS

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

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