Web Safe Color
Copy-ready color values
HEX
#CC0066RGB
rgb(204, 0, 102)HSL
hsl(330, 100%, 40%)HSV
hsv(330, 100%, 80%)CMYK approx.
cmyk(0, 100, 50, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC0066 | |
| RGB | rgb(204, 0, 102) | |
| HSL | hsl(330, 100%, 40%) | |
| HSV | hsv(330, 100%, 80%) | |
| CMYK approx. | cmyk(0, 100, 50, 20) | |
| CSS keyword | cc0066 |
Contrast and classification
DarkLightness5.59:1Contrast with white3.76:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D11A75
White 30%#DB4D94
White 70%#F0B3D1
White 90%#FAE6F0
Black 10%#B8005C
Black 30%#8F0047
Black 70%#3D001F
Black 90%#14000A
Harmony palettes
Complementary
#33FF99#64FFB1Analogous
#B40072#CC0C5ATriadic
#0066CC#66CC00Split complementary
#58FFAB#2AD17DUsing Cc0066
Cc0066 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-cc0066: #cc0066;
}
.button-primary {
background: var(--color-cc0066);
color: #ffffff;
}
$cc0066: #cc0066;
// Tailwind arbitrary value
class="bg-[#cc0066] text-white"