CSS Named Color
Copy-ready color values
HEX
#FFE4E1RGB
rgb(255, 228, 225)HSL
hsl(6, 100%, 94%)HSV
hsv(6, 12%, 100%)CMYK approx.
cmyk(0, 11, 12, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFE4E1 | |
| RGB | rgb(255, 228, 225) | |
| HSL | hsl(6, 100%, 94%) | |
| HSV | hsv(6, 12%, 100%) | |
| CMYK approx. | cmyk(0, 11, 12, 0) | |
| CSS keyword | mistyrose |
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#3D5254Analogous
#FCE4E5#FFE4E1Triadic
#E4E1FF#E1FFE4Split complementary
#2E4447#001619Using 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"