Web Safe Color
Copy-ready color values
HEX
#CC00FFRGB
rgb(204, 0, 255)HSL
hsl(288, 100%, 50%)HSV
hsv(288, 100%, 100%)CMYK approx.
cmyk(20, 100, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC00FF | |
| RGB | rgb(204, 0, 255) | |
| HSL | hsl(288, 100%, 50%) | |
| HSV | hsv(288, 100%, 100%) | |
| CMYK approx. | cmyk(20, 100, 0, 0) | |
| CSS keyword | cc00ff |
Contrast and classification
DarkLightness4.19:1Contrast with white5.01:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#D11AFF
White 30%#DB4DFF
White 70%#F0B3FF
White 90%#FAE6FF
Black 10%#B800E6
Black 30%#8F00B3
Black 70%#3D004D
Black 90%#14001A
Harmony palettes
Complementary
#33FF00#64FF3DAnalogous
#B400F9#CC1FE0Triadic
#00FFCC#FFCC00Split complementary
#58FF2E#2AD100Using Cc00ff
Cc00ff 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-cc00ff: #cc00ff;
}
.button-primary {
background: var(--color-cc00ff);
color: #000000;
}
$cc00ff: #cc00ff;
// Tailwind arbitrary value
class="bg-[#cc00ff] text-white"