Web Safe Color
Copy-ready color values
HEX
#CC9933RGB
rgb(204, 153, 51)HSL
hsl(40, 60%, 50%)HSV
hsv(40, 75%, 80%)CMYK approx.
cmyk(0, 25, 75, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC9933 | |
| RGB | rgb(204, 153, 51) | |
| HSL | hsl(40, 60%, 50%) | |
| HSV | hsv(40, 75%, 80%) | |
| CMYK approx. | cmyk(0, 25, 75, 20) | |
| CSS keyword | cc9933 |
Contrast and classification
DarkLightness2.57:1Contrast with white8.17:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D1A347
White 30%#DBB870
White 70%#F0E0C2
White 90%#FAF5EB
Black 10%#B88A2E
Black 30%#8F6B24
Black 70%#3D2E0F
Black 90%#140F05
Harmony palettes
Complementary
#3366CC#648BD8Analogous
#C69945#CC8D3FTriadic
#9933CC#33CC99Split complementary
#5882D5#2A54A7Using Cc9933
Cc9933 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-cc9933: #cc9933;
}
.button-primary {
background: var(--color-cc9933);
color: #000000;
}
$cc9933: #cc9933;
// Tailwind arbitrary value
class="bg-[#cc9933] text-white"