Web Safe Color
Copy-ready color values
HEX
#FF00CCRGB
rgb(255, 0, 204)HSL
hsl(312, 100%, 50%)HSV
hsv(312, 100%, 100%)CMYK approx.
cmyk(0, 100, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF00CC | |
| RGB | rgb(255, 0, 204) | |
| HSL | hsl(312, 100%, 50%) | |
| HSV | hsv(312, 100%, 100%) | |
| CMYK approx. | cmyk(0, 100, 20, 0) | |
| CSS keyword | ff00cc |
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#3DFF64Analogous
#E000D2#FF18B4Triadic
#00CCFF#CCFF00Split complementary
#2EFF58#00D12AUsing 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"