Web Safe Color
Copy-ready color values
HEX
#CCCC33RGB
rgb(204, 204, 51)HSL
hsl(60, 60%, 50%)HSV
hsv(60, 75%, 80%)CMYK approx.
cmyk(0, 0, 75, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCCC33 | |
| RGB | rgb(204, 204, 51) | |
| HSL | hsl(60, 60%, 50%) | |
| HSV | hsv(60, 75%, 80%) | |
| CMYK approx. | cmyk(0, 0, 75, 20) | |
| CSS keyword | cccc33 |
Contrast and classification
DarkLightness1.71:1Contrast with white12.25:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D1D147
White 30%#DBDB70
White 70%#F0F0C2
White 90%#FAFAEB
Black 10%#B8B82E
Black 30%#8F8F24
Black 70%#3D3D0F
Black 90%#141405
Harmony palettes
Complementary
#3333CC#6464D8Analogous
#CCCC45#CCBA45Triadic
#CC33CC#33CCCCSplit complementary
#5858D5#2A2AA7Using Cccc33
Cccc33 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-cccc33: #cccc33;
}
.button-primary {
background: var(--color-cccc33);
color: #000000;
}
$cccc33: #cccc33;
// Tailwind arbitrary value
class="bg-[#cccc33] text-white"