Web Safe Color
Copy-ready color values
HEX
#CC99CCRGB
rgb(204, 153, 204)HSL
hsl(300, 33%, 70%)HSV
hsv(300, 25%, 80%)CMYK approx.
cmyk(0, 25, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC99CC | |
| RGB | rgb(204, 153, 204) | |
| HSL | hsl(300, 33%, 70%) | |
| HSV | hsv(300, 25%, 80%) | |
| CMYK approx. | cmyk(0, 25, 0, 20) | |
| CSS keyword | cc99cc |
Contrast and classification
LightLightness2.33:1Contrast with white9.00:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D1A3D1
White 30%#DBB8DB
White 70%#F0E0F0
White 90%#FAF5FA
Black 10%#B88AB8
Black 30%#8F6B8F
Black 70%#3D2E3D
Black 90%#140F14
Harmony palettes
Complementary
#336633#648B64Analogous
#C699CC#CC9FC6Triadic
#99CCCC#CCCC99Split complementary
#588258#2A542AUsing Cc99cc
Cc99cc 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-cc99cc: #cc99cc;
}
.button-primary {
background: var(--color-cc99cc);
color: #000000;
}
$cc99cc: #cc99cc;
// Tailwind arbitrary value
class="bg-[#cc99cc] text-white"