Web Safe Color

Copy-ready color values

HEX#FF00CC
RGBrgb(255, 0, 204)
HSLhsl(312, 100%, 50%)
HSVhsv(312, 100%, 100%)
CMYK approx.cmyk(0, 100, 20, 0)

Color value table

FormatValueCopy
HEX#FF00CC
RGBrgb(255, 0, 204)
HSLhsl(312, 100%, 50%)
HSVhsv(312, 100%, 100%)
CMYK approx.cmyk(0, 100, 20, 0)
CSS keywordff00cc

Contrast and classification

DarkLightness3.43:1Contrast with white6.12:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FF1AD1

White 30%
#FF4DDB

White 70%
#FFB3F0

White 90%
#FFE6FA

Black 10%
#E600B8

Black 30%
#B3008F

Black 70%
#4D003D

Black 90%
#1A0014

Harmony palettes

Complementary

#00FF33
#3DFF64

Analogous

#E000D2
#FF18B4

Triadic

#00CCFF
#CCFF00

Split complementary

#2EFF58
#00D12A

Using Ff00cc

Ff00cc 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-ff00cc: #ff00cc;
}

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

$ff00cc: #ff00cc;

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