Blanched Almond (Yellow)
#FFEFCC
RGB: 255, 239, 204
Color OverviewHEX #FFEFCC

#FFEFCC Color Code Information

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

HEX
#FFEFCC
RGB
255, 239, 204
HSL
41°, 100%, 90%
HSV
41°, 20%, 100%
CMYK
0%, 6%, 20%, 0%
Name Match
Blanched Almond
Closest Standard

Shades of #FFEFCC (Darker Variations)

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

Tints of #FFEFCC (Lighter Variations)

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

Tones of #FFEFCC (Muted Variations)

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

Color Harmonies for #FFEFCC

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

Developer Code Snippets & Tailwind CSS

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

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