Web Safe Color

Copy-ready color values

HEX#CC6600
RGBrgb(204, 102, 0)
HSLhsl(30, 100%, 40%)
HSVhsv(30, 100%, 80%)
CMYK approx.cmyk(0, 50, 100, 20)

Color value table

FormatValueCopy
HEX#CC6600
RGBrgb(204, 102, 0)
HSLhsl(30, 100%, 40%)
HSVhsv(30, 100%, 80%)
CMYK approx.cmyk(0, 50, 100, 20)
CSS keywordcc6600

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
#64B1FF

Analogous

#C06618
#CC5A0C

Triadic

#6600CC
#00CC66

Split complementary

#58ABFF
#2A7DD1

Using 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"