Web Safe Color

Copy-ready color values

HEX#CC9900
RGBrgb(204, 153, 0)
HSLhsl(45, 100%, 40%)
HSVhsv(45, 100%, 80%)
CMYK approx.cmyk(0, 25, 100, 20)

Color value table

FormatValueCopy
HEX#CC9900
RGBrgb(204, 153, 0)
HSLhsl(45, 100%, 40%)
HSVhsv(45, 100%, 80%)
CMYK approx.cmyk(0, 25, 100, 20)
CSS keywordcc9900

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
#648BFF

Analogous

#C69918
#CC8712

Triadic

#9900CC
#00CC99

Split complementary

#5882FF
#2A54D1

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