CSS Named Color

Copy-ready color values

HEX#FFDAB9
RGBrgb(255, 218, 185)
HSLhsl(28, 100%, 86%)
HSVhsv(28, 27%, 100%)
CMYK approx.cmyk(0, 15, 27, 0)

Color value table

FormatValueCopy
HEX#FFDAB9
RGBrgb(255, 218, 185)
HSLhsl(28, 100%, 86%)
HSVhsv(28, 27%, 100%)
CMYK approx.cmyk(0, 15, 27, 0)
CSS keywordpeachpuff

Contrast and classification

LightLightness1.31:1Contrast with white15.98:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFDEC0

White 30%
#FFE5CE

White 70%
#FFF4EA

White 90%
#FFFBF8

Black 10%
#E6C4A7

Black 30%
#B39982

Black 70%
#4D4138

Black 90%
#1A1613

Harmony palettes

Complementary

#002546
#3D5972

Analogous

#FBDAC1
#FFD6BD

Triadic

#DAB9FF
#B9FFDA

Split complementary

#2E4C67
#001E39

Using Peachpuff

Peachpuff 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-peachpuff: #ffdab9;
}

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

$peachpuff: #ffdab9;

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