CSS Named Color
Copy-ready color values
HEX
#FF1493RGB
rgb(255, 20, 147)HSL
hsl(328, 100%, 54%)HSV
hsv(328, 92%, 100%)CMYK approx.
cmyk(0, 92, 42, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF1493 | |
| RGB | rgb(255, 20, 147) | |
| HSL | hsl(328, 100%, 54%) | |
| HSV | hsv(328, 92%, 100%) | |
| CMYK approx. | cmyk(0, 92, 42, 0) | |
| CSS keyword | deeppink |
Contrast and classification
DarkLightness3.64:1Contrast with white5.77:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF2C9E
White 30%#FF5BB3
White 70%#FFB9DF
White 90%#FFE8F4
Black 10%#E61284
Black 30%#B30E67
Black 70%#4D062C
Black 90%#1A020F
Harmony palettes
Complementary
#00EB6C#3DF08FAnalogous
#E314A0#FF2384Triadic
#1493FF#93FF14Split complementary
#2EEF86#00C159Using Deeppink
Deeppink 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-deeppink: #ff1493;
}
.button-primary {
background: var(--color-deeppink);
color: #000000;
}
$deeppink: #ff1493;
// Tailwind arbitrary value
class="bg-[#ff1493] text-white"