Web Safe Color
Copy-ready color values
HEX
#CC9999RGB
rgb(204, 153, 153)HSL
hsl(0, 33%, 70%)HSV
hsv(0, 25%, 80%)CMYK approx.
cmyk(0, 25, 25, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC9999 | |
| RGB | rgb(204, 153, 153) | |
| HSL | hsl(0, 33%, 70%) | |
| HSV | hsv(0, 25%, 80%) | |
| CMYK approx. | cmyk(0, 25, 25, 20) | |
| CSS keyword | cc9999 |
Contrast and classification
LightLightness2.45:1Contrast with white8.58:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D1A3A3
White 30%#DBB8B8
White 70%#F0E0E0
White 90%#FAF5F5
Black 10%#B88A8A
Black 30%#8F6B6B
Black 70%#3D2E2E
Black 90%#140F0F
Harmony palettes
Complementary
#336666#648B8BAnalogous
#C6999F#CC9999Triadic
#9999CC#99CC99Split complementary
#588282#2A5454Using Cc9999
Cc9999 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-cc9999: #cc9999;
}
.button-primary {
background: var(--color-cc9999);
color: #000000;
}
$cc9999: #cc9999;
// Tailwind arbitrary value
class="bg-[#cc9999] text-white"