Web Safe Color
Copy-ready color values
HEX
#CC33CCRGB
rgb(204, 51, 204)HSL
hsl(300, 60%, 50%)HSV
hsv(300, 75%, 80%)CMYK approx.
cmyk(0, 75, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC33CC | |
| RGB | rgb(204, 51, 204) | |
| HSL | hsl(300, 60%, 50%) | |
| HSV | hsv(300, 75%, 80%) | |
| CMYK approx. | cmyk(0, 75, 0, 20) | |
| CSS keyword | cc33cc |
Contrast and classification
DarkLightness4.27:1Contrast with white4.91:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D147D1
White 30%#DB70DB
White 70%#F0C2F0
White 90%#FAEBFA
Black 10%#B82EB8
Black 30%#8F248F
Black 70%#3D0F3D
Black 90%#140514
Harmony palettes
Complementary
#33CC33#64D864Analogous
#BA33CC#CC45BATriadic
#33CCCC#CCCC33Split complementary
#58D558#2AA72AUsing Cc33cc
Cc33cc 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-cc33cc: #cc33cc;
}
.button-primary {
background: var(--color-cc33cc);
color: #000000;
}
$cc33cc: #cc33cc;
// Tailwind arbitrary value
class="bg-[#cc33cc] text-white"