Web Safe Color

Copy-ready color values

HEX#FF66FF
RGBrgb(255, 102, 255)
HSLhsl(300, 100%, 70%)
HSVhsv(300, 60%, 100%)
CMYK approx.cmyk(0, 60, 0, 0)

Color value table

FormatValueCopy
HEX#FF66FF
RGBrgb(255, 102, 255)
HSLhsl(300, 100%, 70%)
HSVhsv(300, 60%, 100%)
CMYK approx.cmyk(0, 60, 0, 0)
CSS keywordff66ff

Contrast and classification

LightLightness2.44:1Contrast with white8.60:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FF75FF

White 30%
#FF94FF

White 70%
#FFD1FF

White 90%
#FFF0FF

Black 10%
#E65CE6

Black 30%
#B347B3

Black 70%
#4D1F4D

Black 90%
#1A0A1A

Harmony palettes

Complementary

#009900
#3DB13D

Analogous

#ED66FF
#FF78ED

Triadic

#66FFFF
#FFFF66

Split complementary

#2EAB2E
#007D00

Using Ff66ff

Ff66ff 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-ff66ff: #ff66ff;
}

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

$ff66ff: #ff66ff;

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