Web Safe Color
Copy-ready color values
HEX
#CC66CCRGB
rgb(204, 102, 204)HSL
hsl(300, 50%, 60%)HSV
hsv(300, 50%, 80%)CMYK approx.
cmyk(0, 50, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC66CC | |
| RGB | rgb(204, 102, 204) | |
| HSL | hsl(300, 50%, 60%) | |
| HSV | hsv(300, 50%, 80%) | |
| CMYK approx. | cmyk(0, 50, 0, 20) | |
| CSS keyword | cc66cc |
Contrast and classification
LightLightness3.31:1Contrast with white6.34:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D175D1
White 30%#DB94DB
White 70%#F0D1F0
White 90%#FAF0FA
Black 10%#B85CB8
Black 30%#8F478F
Black 70%#3D1F3D
Black 90%#140A14
Harmony palettes
Complementary
#339933#64B164Analogous
#C066CC#CC72C0Triadic
#66CCCC#CCCC66Split complementary
#58AB58#2A7D2AUsing Cc66cc
Cc66cc 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-cc66cc: #cc66cc;
}
.button-primary {
background: var(--color-cc66cc);
color: #000000;
}
$cc66cc: #cc66cc;
// Tailwind arbitrary value
class="bg-[#cc66cc] text-white"