Web Safe Color
Copy-ready color values
HEX
#CC6666RGB
rgb(204, 102, 102)HSL
hsl(0, 50%, 60%)HSV
hsv(0, 50%, 80%)CMYK approx.
cmyk(0, 50, 50, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC6666 | |
| RGB | rgb(204, 102, 102) | |
| HSL | hsl(0, 50%, 60%) | |
| HSV | hsv(0, 50%, 80%) | |
| CMYK approx. | cmyk(0, 50, 50, 20) | |
| CSS keyword | cc6666 |
Contrast and classification
LightLightness3.71:1Contrast with white5.66:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D17575
White 30%#DB9494
White 70%#F0D1D1
White 90%#FAF0F0
Black 10%#B85C5C
Black 30%#8F4747
Black 70%#3D1F1F
Black 90%#140A0A
Harmony palettes
Complementary
#339999#64B1B1Analogous
#C06672#CC6666Triadic
#6666CC#66CC66Split complementary
#58ABAB#2A7D7DUsing Cc6666
Cc6666 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-cc6666: #cc6666;
}
.button-primary {
background: var(--color-cc6666);
color: #000000;
}
$cc6666: #cc6666;
// Tailwind arbitrary value
class="bg-[#cc6666] text-white"