CSS Named Color

Copy-ready color values

HEX#FFC0CB
RGBrgb(255, 192, 203)
HSLhsl(350, 100%, 88%)
HSVhsv(350, 25%, 100%)
CMYK approx.cmyk(0, 25, 20, 0)

Color value table

FormatValueCopy
HEX#FFC0CB
RGBrgb(255, 192, 203)
HSLhsl(350, 100%, 88%)
HSVhsv(350, 25%, 100%)
CMYK approx.cmyk(0, 25, 20, 0)
CSS keywordpink

Contrast and classification

LightLightness1.54:1Contrast with white13.65:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FFC6D0

White 30%
#FFD3DB

White 70%
#FFECEF

White 90%
#FFF9FA

Black 10%
#E6ADB7

Black 30%
#B3868E

Black 70%
#4D3A3D

Black 90%
#1A1314

Harmony palettes

Complementary

#003F34
#3D6D65

Analogous

#F7C0D1
#FFC1CA

Triadic

#C0CBFF
#CBFFC0

Split complementary

#2E6259
#00342B

Using Pink

Pink 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-pink: #ffc0cb;
}

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

$pink: #ffc0cb;

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