Web Safe Color
Copy-ready color values
HEX
#CC3366RGB
rgb(204, 51, 102)HSL
hsl(340, 60%, 50%)HSV
hsv(340, 75%, 80%)CMYK approx.
cmyk(0, 75, 50, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC3366 | |
| RGB | rgb(204, 51, 102) | |
| HSL | hsl(340, 60%, 50%) | |
| HSV | hsv(340, 75%, 80%) | |
| CMYK approx. | cmyk(0, 75, 50, 20) | |
| CSS keyword | cc3366 |
Contrast and classification
DarkLightness4.96:1Contrast with white4.23:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D14775
White 30%#DB7094
White 70%#F0C2D1
White 90%#FAEBF0
Black 10%#B82E5C
Black 30%#8F2447
Black 70%#3D0F1F
Black 90%#14050A
Harmony palettes
Complementary
#33CC99#64D8B1Analogous
#BA3372#CC3960Triadic
#3366CC#66CC33Split complementary
#58D5AB#2AA77DUsing Cc3366
Cc3366 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-cc3366: #cc3366;
}
.button-primary {
background: var(--color-cc3366);
color: #ffffff;
}
$cc3366: #cc3366;
// Tailwind arbitrary value
class="bg-[#cc3366] text-white"