Web Safe Color
Copy-ready color values
HEX
#CCCC66RGB
rgb(204, 204, 102)HSL
hsl(60, 50%, 60%)HSV
hsv(60, 50%, 80%)CMYK approx.
cmyk(0, 0, 50, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCCC66 | |
| RGB | rgb(204, 204, 102) | |
| HSL | hsl(60, 50%, 60%) | |
| HSV | hsv(60, 50%, 80%) | |
| CMYK approx. | cmyk(0, 0, 50, 20) | |
| CSS keyword | cccc66 |
Contrast and classification
LightLightness1.69:1Contrast with white12.40:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D1D175
White 30%#DBDB94
White 70%#F0F0D1
White 90%#FAFAF0
Black 10%#B8B85C
Black 30%#8F8F47
Black 70%#3D3D1F
Black 90%#14140A
Harmony palettes
Complementary
#333399#6464B1Analogous
#CCCC72#CCC072Triadic
#CC66CC#66CCCCSplit complementary
#5858AB#2A2A7DUsing Cccc66
Cccc66 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-cccc66: #cccc66;
}
.button-primary {
background: var(--color-cccc66);
color: #000000;
}
$cccc66: #cccc66;
// Tailwind arbitrary value
class="bg-[#cccc66] text-white"