CSS Named Color
Copy-ready color values
HEX
#FFFACDRGB
rgb(255, 250, 205)HSL
hsl(54, 100%, 90%)HSV
hsv(54, 20%, 100%)CMYK approx.
cmyk(0, 2, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFFACD | |
| RGB | rgb(255, 250, 205) | |
| HSL | hsl(54, 100%, 90%) | |
| HSV | hsv(54, 20%, 100%) | |
| CMYK approx. | cmyk(0, 2, 20, 0) | |
| CSS keyword | lemonchiffon |
Contrast and classification
LightLightness1.06:1Contrast with white19.81:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFFBD2
White 30%#FFFCDC
White 70%#FFFEF0
White 90%#FFFFFA
Black 10%#E6E1B9
Black 30%#B3AF90
Black 70%#4D4B3E
Black 90%#1A1915
Harmony palettes
Complementary
#000532#3D4163Analogous
#FEFAD3#FFF5D2Triadic
#FACDFF#CDFFFASplit complementary
#2E3257#000429Using Lemonchiffon
Lemonchiffon 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-lemonchiffon: #fffacd;
}
.button-primary {
background: var(--color-lemonchiffon);
color: #000000;
}
$lemonchiffon: #fffacd;
// Tailwind arbitrary value
class="bg-[#fffacd] text-white"