CSS Named Color

Copy-ready color values

HEX#FF1493
RGBrgb(255, 20, 147)
HSLhsl(328, 100%, 54%)
HSVhsv(328, 92%, 100%)
CMYK approx.cmyk(0, 92, 42, 0)

Color value table

FormatValueCopy
HEX#FF1493
RGBrgb(255, 20, 147)
HSLhsl(328, 100%, 54%)
HSVhsv(328, 92%, 100%)
CMYK approx.cmyk(0, 92, 42, 0)
CSS keyworddeeppink

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
#3DF08F

Analogous

#E314A0
#FF2384

Triadic

#1493FF
#93FF14

Split complementary

#2EEF86
#00C159

Using 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"