CSS Named Color
Copy-ready color values
HEX
#FFDAB9RGB
rgb(255, 218, 185)HSL
hsl(28, 100%, 86%)HSV
hsv(28, 27%, 100%)CMYK approx.
cmyk(0, 15, 27, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFDAB9 | |
| RGB | rgb(255, 218, 185) | |
| HSL | hsl(28, 100%, 86%) | |
| HSV | hsv(28, 27%, 100%) | |
| CMYK approx. | cmyk(0, 15, 27, 0) | |
| CSS keyword | peachpuff |
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#3D5972Analogous
#FBDAC1#FFD6BDTriadic
#DAB9FF#B9FFDASplit complementary
#2E4C67#001E39Using 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"