CSS Named Color

Copy-ready color values

HEX#FFB6C1
RGBrgb(255, 182, 193)
HSLhsl(351, 100%, 86%)
HSVhsv(351, 29%, 100%)
CMYK approx.cmyk(0, 29, 24, 0)

Color value table

FormatValueCopy
HEX#FFB6C1
RGBrgb(255, 182, 193)
HSLhsl(351, 100%, 86%)
HSVhsv(351, 29%, 100%)
CMYK approx.cmyk(0, 29, 24, 0)
CSS keywordlightpink

Contrast and classification

LightLightness1.65:1Contrast with white12.71:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FFBDC7

White 30%
#FFCCD4

White 70%
#FFE9EC

White 90%
#FFF8F9

Black 10%
#E6A4AE

Black 30%
#B37F87

Black 70%
#4D373A

Black 90%
#1A1213

Harmony palettes

Complementary

#00493E
#3D756C

Analogous

#F6B6C8
#FFB7C0

Triadic

#B6C1FF
#C1FFB6

Split complementary

#2E6A61
#003C33

Using Lightpink

Lightpink 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-lightpink: #ffb6c1;
}

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

$lightpink: #ffb6c1;

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