CSS Named Color
Copy-ready color values
HEX
#FDF5E6RGB
rgb(253, 245, 230)HSL
hsl(39, 85%, 95%)HSV
hsv(39, 9%, 99%)CMYK approx.
cmyk(0, 3, 9, 1)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FDF5E6 | |
| RGB | rgb(253, 245, 230) | |
| HSL | hsl(39, 85%, 95%) | |
| HSV | hsv(39, 9%, 99%) | |
| CMYK approx. | cmyk(0, 3, 9, 1) | |
| CSS keyword | oldlace |
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#3F4550Analogous
#FCF5E9#FDF3E8Triadic
#F5E6FD#E6FDF5Split complementary
#303642#020815Using 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"