CSS Named Color
Copy-ready color values
HEX
#FF69B4RGB
rgb(255, 105, 180)HSL
hsl(330, 100%, 71%)HSV
hsv(330, 59%, 100%)CMYK approx.
cmyk(0, 59, 29, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF69B4 | |
| RGB | rgb(255, 105, 180) | |
| HSL | hsl(330, 100%, 71%) | |
| HSV | hsv(330, 59%, 100%) | |
| CMYK approx. | cmyk(0, 59, 29, 0) | |
| CSS keyword | hotpink |
Contrast and classification
LightLightness2.65:1Contrast with white7.93:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF78BC
White 30%#FF96CB
White 70%#FFD2E9
White 90%#FFF0F8
Black 10%#E65FA2
Black 30%#B34A7E
Black 70%#4D2036
Black 90%#1A0B12
Harmony palettes
Complementary
#00964B#3DAF76Analogous
#ED69BD#FF72ABTriadic
#69B4FF#B4FF69Split complementary
#2EA96B#007B3EUsing Hotpink
Hotpink 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-hotpink: #ff69b4;
}
.button-primary {
background: var(--color-hotpink);
color: #000000;
}
$hotpink: #ff69b4;
// Tailwind arbitrary value
class="bg-[#ff69b4] text-white"