Web Safe Color

Copy-ready color values

HEX#FF66CC
RGBrgb(255, 102, 204)
HSLhsl(320, 100%, 70%)
HSVhsv(320, 60%, 100%)
CMYK approx.cmyk(0, 60, 20, 0)

Color value table

FormatValueCopy
HEX#FF66CC
RGBrgb(255, 102, 204)
HSLhsl(320, 100%, 70%)
HSVhsv(320, 60%, 100%)
CMYK approx.cmyk(0, 60, 20, 0)
CSS keywordff66cc

Contrast and classification

LightLightness2.62:1Contrast with white8.02:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FF75D1

White 30%
#FF94DB

White 70%
#FFD1F0

White 90%
#FFF0FA

Black 10%
#E65CB8

Black 30%
#B3478F

Black 70%
#4D1F3D

Black 90%
#1A0A14

Harmony palettes

Complementary

#009933
#3DB164

Analogous

#ED66D2
#FF72C0

Triadic

#66CCFF
#CCFF66

Split complementary

#2EAB58
#007D2A

Using Ff66cc

Ff66cc 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-ff66cc: #ff66cc;
}

.button-primary {
  background: var(--color-ff66cc);
  color: #000000;
}

$ff66cc: #ff66cc;

// Tailwind arbitrary value
class="bg-[#ff66cc] text-white"