CSS Named Color
Copy-ready color values
HEX
#FFFFE0RGB
rgb(255, 255, 224)HSL
hsl(60, 100%, 94%)HSV
hsv(60, 12%, 100%)CMYK approx.
cmyk(0, 0, 12, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFFFE0 | |
| RGB | rgb(255, 255, 224) | |
| HSL | hsl(60, 100%, 94%) | |
| HSV | hsv(60, 12%, 100%) | |
| CMYK approx. | cmyk(0, 0, 12, 0) | |
| CSS keyword | lightyellow |
Contrast and classification
LightLightness1.02:1Contrast with white20.63:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFFFE3
White 30%#FFFFE9
White 70%#FFFFF6
White 90%#FFFFFC
Black 10%#E6E6CA
Black 30%#B3B39D
Black 70%#4D4D43
Black 90%#1A1A16
Harmony palettes
Complementary
#00001F#3D3D55Analogous
#FFFFE4#FFFBE4Triadic
#FFE0FF#E0FFFFSplit complementary
#2E2E47#000019Using Lightyellow
Lightyellow works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-lightyellow: #ffffe0;
}
.button-primary {
background: var(--color-lightyellow);
color: #000000;
}
$lightyellow: #ffffe0;
// Tailwind arbitrary value
class="bg-[#ffffe0] text-white"