CSS Named Color

Copy-ready color values

HEX#FFF0F5
RGBrgb(255, 240, 245)
HSLhsl(340, 100%, 97%)
HSVhsv(340, 6%, 100%)
CMYK approx.cmyk(0, 6, 4, 0)

Color value table

FormatValueCopy
HEX#FFF0F5
RGBrgb(255, 240, 245)
HSLhsl(340, 100%, 97%)
HSVhsv(340, 6%, 100%)
CMYK approx.cmyk(0, 6, 4, 0)
CSS keywordlavenderblush

Contrast and classification

LightLightness1.10:1Contrast with white19.03:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FFF2F6

White 30%
#FFF5F8

White 70%
#FFFBFC

White 90%
#FFFEFE

Black 10%
#E6D8DD

Black 30%
#B3A8AC

Black 70%
#4D484A

Black 90%
#1A1819

Harmony palettes

Complementary

#000F0A
#3D4945

Analogous

#FDF0F6
#FFF1F4

Triadic

#F0F5FF
#F5FFF0

Split complementary

#2E3A36
#000C08

Using Lavenderblush

Lavenderblush 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-lavenderblush: #fff0f5;
}

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

$lavenderblush: #fff0f5;

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