Light yellow color: code #FFFFE0
Light yellow
#FFFFE0
Color codes
- HEX
#FFFFE0 - RGB
rgb(255, 255, 224) - HSL
hsl(60, 100%, 94%) - HSV
hsv(60, 12%, 100%) - CMYK
cmyk(0%, 0%, 12%, 0%) - LAB
lab(99.3% -5.1 14.8) - OKLCH
oklch(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
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;
}