Web Safe Color
Copy-ready color values
HEX
#CC6600RGB
rgb(204, 102, 0)HSL
hsl(30, 100%, 40%)HSV
hsv(30, 100%, 80%)CMYK approx.
cmyk(0, 50, 100, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC6600 | |
| RGB | rgb(204, 102, 0) | |
| HSL | hsl(30, 100%, 40%) | |
| HSV | hsv(30, 100%, 80%) | |
| CMYK approx. | cmyk(0, 50, 100, 20) | |
| CSS keyword | cc6600 |
Contrast and classification
DarkLightness3.84:1Contrast with white5.47:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D1751A
White 30%#DB944D
White 70%#F0D1B3
White 90%#FAF0E6
Black 10%#B85C00
Black 30%#8F4700
Black 70%#3D1F00
Black 90%#140A00
Harmony palettes
Complementary
#3399FF#64B1FFAnalogous
#C06618#CC5A0CTriadic
#6600CC#00CC66Split complementary
#58ABFF#2A7DD1Using Cc6600
Cc6600 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-cc6600: #cc6600;
}
.button-primary {
background: var(--color-cc6600);
color: #000000;
}
$cc6600: #cc6600;
// Tailwind arbitrary value
class="bg-[#cc6600] text-white"