CSS Named Color

Copy-ready color values

HEX#FFEBCD
RGBrgb(255, 235, 205)
HSLhsl(36, 100%, 90%)
HSVhsv(36, 20%, 100%)
CMYK approx.cmyk(0, 8, 20, 0)

Color value table

FormatValueCopy
HEX#FFEBCD
RGBrgb(255, 235, 205)
HSLhsl(36, 100%, 90%)
HSVhsv(36, 20%, 100%)
CMYK approx.cmyk(0, 8, 20, 0)
CSS keywordblanchedalmond

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
#3D4C63

Analogous

#FDEBD3
#FFE7D1

Triadic

#EBCDFF
#CDFFEB

Split complementary

#2E3E57
#001029

Using 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"