CSS Named Color

Copy-ready color values

HEX#FDF5E6
RGBrgb(253, 245, 230)
HSLhsl(39, 85%, 95%)
HSVhsv(39, 9%, 99%)
CMYK approx.cmyk(0, 3, 9, 1)

Color value table

FormatValueCopy
HEX#FDF5E6
RGBrgb(253, 245, 230)
HSLhsl(39, 85%, 95%)
HSVhsv(39, 9%, 99%)
CMYK approx.cmyk(0, 3, 9, 1)
CSS keywordoldlace

Contrast and classification

LightLightness1.08:1Contrast with white19.38:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FDF6E9

White 30%
#FEF8EE

White 70%
#FEFCF8

White 90%
#FFFEFD

Black 10%
#E4DDCF

Black 30%
#B1ACA1

Black 70%
#4C4A45

Black 90%
#191917

Harmony palettes

Complementary

#020A19
#3F4550

Analogous

#FCF5E9
#FDF3E8

Triadic

#F5E6FD
#E6FDF5

Split complementary

#303642
#020815

Using Oldlace

Oldlace 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-oldlace: #fdf5e6;
}

.button-primary {
  background: var(--color-oldlace);
  color: #000000;
}

$oldlace: #fdf5e6;

// Tailwind arbitrary value
class="bg-[#fdf5e6] text-white"