CSS Named Color

Copy-ready color values

HEX#FFE4E1
RGBrgb(255, 228, 225)
HSLhsl(6, 100%, 94%)
HSVhsv(6, 12%, 100%)
CMYK approx.cmyk(0, 11, 12, 0)

Color value table

FormatValueCopy
HEX#FFE4E1
RGBrgb(255, 228, 225)
HSLhsl(6, 100%, 94%)
HSVhsv(6, 12%, 100%)
CMYK approx.cmyk(0, 11, 12, 0)
CSS keywordmistyrose

Contrast and classification

LightLightness1.20:1Contrast with white17.44:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFE7E4

White 30%
#FFECEA

White 70%
#FFF7F6

White 90%
#FFFCFC

Black 10%
#E6CDCB

Black 30%
#B3A09E

Black 70%
#4D4444

Black 90%
#1A1717

Harmony palettes

Complementary

#001B1E
#3D5254

Analogous

#FCE4E5
#FFE4E1

Triadic

#E4E1FF
#E1FFE4

Split complementary

#2E4447
#001619

Using Mistyrose

Mistyrose 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-mistyrose: #ffe4e1;
}

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

$mistyrose: #ffe4e1;

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