Web Safe Color
Copy-ready color values
HEX
#CC9900RGB
rgb(204, 153, 0)HSL
hsl(45, 100%, 40%)HSV
hsv(45, 100%, 80%)CMYK approx.
cmyk(0, 25, 100, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC9900 | |
| RGB | rgb(204, 153, 0) | |
| HSL | hsl(45, 100%, 40%) | |
| HSV | hsv(45, 100%, 80%) | |
| CMYK approx. | cmyk(0, 25, 100, 20) | |
| CSS keyword | cc9900 |
Contrast and classification
DarkLightness2.58:1Contrast with white8.12:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D1A31A
White 30%#DBB84D
White 70%#F0E0B3
White 90%#FAF5E6
Black 10%#B88A00
Black 30%#8F6B00
Black 70%#3D2E00
Black 90%#140F00
Harmony palettes
Complementary
#3366FF#648BFFAnalogous
#C69918#CC8712Triadic
#9900CC#00CC99Split complementary
#5882FF#2A54D1Using Cc9900
Cc9900 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-cc9900: #cc9900;
}
.button-primary {
background: var(--color-cc9900);
color: #000000;
}
$cc9900: #cc9900;
// Tailwind arbitrary value
class="bg-[#cc9900] text-white"