CSS Named Color
Copy-ready color values
HEX
#FFC0CBRGB
rgb(255, 192, 203)HSL
hsl(350, 100%, 88%)HSV
hsv(350, 25%, 100%)CMYK approx.
cmyk(0, 25, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFC0CB | |
| RGB | rgb(255, 192, 203) | |
| HSL | hsl(350, 100%, 88%) | |
| HSV | hsv(350, 25%, 100%) | |
| CMYK approx. | cmyk(0, 25, 20, 0) | |
| CSS keyword | pink |
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#3D6D65Analogous
#F7C0D1#FFC1CATriadic
#C0CBFF#CBFFC0Split complementary
#2E6259#00342BUsing 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"