CSS Named Color
Copy-ready color values
HEX
#FFEBCDRGB
rgb(255, 235, 205)HSL
hsl(36, 100%, 90%)HSV
hsv(36, 20%, 100%)CMYK approx.
cmyk(0, 8, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFEBCD | |
| RGB | rgb(255, 235, 205) | |
| HSL | hsl(36, 100%, 90%) | |
| HSV | hsv(36, 20%, 100%) | |
| CMYK approx. | cmyk(0, 8, 20, 0) | |
| CSS keyword | blanchedalmond |
Contrast and classification
LightLightness1.17:1Contrast with white18.02:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFEDD2
White 30%#FFF1DC
White 70%#FFF9F0
White 90%#FFFDFA
Black 10%#E6D4B9
Black 30%#B3A590
Black 70%#4D473E
Black 90%#1A1815
Harmony palettes
Complementary
#001432#3D4C63Analogous
#FDEBD3#FFE7D1Triadic
#EBCDFF#CDFFEBSplit complementary
#2E3E57#001029Using Blanchedalmond
Blanchedalmond 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-blanchedalmond: #ffebcd;
}
.button-primary {
background: var(--color-blanchedalmond);
color: #000000;
}
$blanchedalmond: #ffebcd;
// Tailwind arbitrary value
class="bg-[#ffebcd] text-white"