Web Safe Color
Copy-ready color values
HEX
#CC6699RGB
rgb(204, 102, 153)HSL
hsl(330, 50%, 60%)HSV
hsv(330, 50%, 80%)CMYK approx.
cmyk(0, 50, 25, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC6699 | |
| RGB | rgb(204, 102, 153) | |
| HSL | hsl(330, 50%, 60%) | |
| HSV | hsv(330, 50%, 80%) | |
| CMYK approx. | cmyk(0, 50, 25, 20) | |
| CSS keyword | cc6699 |
Contrast and classification
LightLightness3.54:1Contrast with white5.93:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D175A3
White 30%#DB94B8
White 70%#F0D1E0
White 90%#FAF0F5
Black 10%#B85C8A
Black 30%#8F476B
Black 70%#3D1F2E
Black 90%#140A0F
Harmony palettes
Complementary
#339966#64B18BAnalogous
#C0669F#CC6C93Triadic
#6699CC#99CC66Split complementary
#58AB82#2A7D54Using Cc6699
Cc6699 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-cc6699: #cc6699;
}
.button-primary {
background: var(--color-cc6699);
color: #000000;
}
$cc6699: #cc6699;
// Tailwind arbitrary value
class="bg-[#cc6699] text-white"