CSS Named Color

Copy-ready color values

HEX#FFFACD
RGBrgb(255, 250, 205)
HSLhsl(54, 100%, 90%)
HSVhsv(54, 20%, 100%)
CMYK approx.cmyk(0, 2, 20, 0)

Color value table

FormatValueCopy
HEX#FFFACD
RGBrgb(255, 250, 205)
HSLhsl(54, 100%, 90%)
HSVhsv(54, 20%, 100%)
CMYK approx.cmyk(0, 2, 20, 0)
CSS keywordlemonchiffon

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
#3D4163

Analogous

#FEFAD3
#FFF5D2

Triadic

#FACDFF
#CDFFFA

Split complementary

#2E3257
#000429

Using 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"