Light yellow color: code #FFFFE0

Light yellow

#FFFFE0

Color codes

  • HEX#FFFFE0
  • RGBrgb(255, 255, 224)
  • HSLhsl(60, 100%, 94%)
  • HSVhsv(60, 12%, 100%)
  • CMYKcmyk(0%, 0%, 12%, 0%)
  • LABlab(99.3% -5.1 14.8)
  • OKLCHoklch(99.2% 0.04 107.1)

About the color Light yellow

Light yellow has the HEX code #FFFFE0, which corresponds to rgb(255, 255, 224) in the RGB model. On the color wheel its hue sits at 60°, with 100% saturation and 94% lightness (hsl(60, 100%, 94%)).

Because of its hue it reads as a warm color: it tends to feel energetic and close, and it visually “advances” in a composition.

As a background it calls for dark text: black reaches a 20.63:1 contrast ratio on it, versus 1.01:1 for white.

For print, the approximate conversion is cmyk(0%, 0%, 12%, 0%). Always confirm with your printer’s color profile, because the result depends on paper and ink.

Lighter tints

Darker shades

Color combinations with Light yellow

Complementary

#FFFFE0 · #E0E0FF

Analogous

#FFF0E0 · #FFFFE0 · #F0FFE0

Triadic

#FFFFE0 · #E0FFFF · #FFE0FF

Tetradic

#FFFFE0 · #E0FFF0 · #E0E0FF · #FFE0F0

Split-complementary

#FFFFE0 · #E0F0FF · #F0E0FF

Monochromatic

#FFFF61 · #FFFFAD · #FFFFE0 · #FFFFFF · #FFFFFF

Light yellow with white and black text

White text Aa Bb Cc 123
1.01:1 · fails WCAG
Black text Aa Bb Cc 123
20.63:1 · AAA

Test other pairs in the contrast checker

How to use it in CSS

:root {
  --color-light-yellow: #FFFFE0;
  --color-light-yellow-rgb: 255, 255, 224;
}

.elemento {
  background-color: var(--color-light-yellow);
  color: #000000;
}