CSS Named Color
Copy-ready color values
HEX
#FFB6C1RGB
rgb(255, 182, 193)HSL
hsl(351, 100%, 86%)HSV
hsv(351, 29%, 100%)CMYK approx.
cmyk(0, 29, 24, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFB6C1 | |
| RGB | rgb(255, 182, 193) | |
| HSL | hsl(351, 100%, 86%) | |
| HSV | hsv(351, 29%, 100%) | |
| CMYK approx. | cmyk(0, 29, 24, 0) | |
| CSS keyword | lightpink |
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#3D756CAnalogous
#F6B6C8#FFB7C0Triadic
#B6C1FF#C1FFB6Split complementary
#2E6A61#003C33Using 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"