Web Safe Color

Copy-ready color values

HEX#CC9966
RGBrgb(204, 153, 102)
HSLhsl(30, 50%, 60%)
HSVhsv(30, 50%, 80%)
CMYK approx.cmyk(0, 25, 50, 20)

Color value table

FormatValueCopy
HEX#CC9966
RGBrgb(204, 153, 102)
HSLhsl(30, 50%, 60%)
HSVhsv(30, 50%, 80%)
CMYK approx.cmyk(0, 25, 50, 20)
CSS keywordcc9966

Contrast and classification

LightLightness2.53:1Contrast with white8.32:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#D1A375

White 30%
#DBB894

White 70%
#F0E0D1

White 90%
#FAF5F0

Black 10%
#B88A5C

Black 30%
#8F6B47

Black 70%
#3D2E1F

Black 90%
#140F0A

Harmony palettes

Complementary

#336699
#648BB1

Analogous

#C69972
#CC936C

Triadic

#9966CC
#66CC99

Split complementary

#5882AB
#2A547D

Using Cc9966

Cc9966 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-cc9966: #cc9966;
}

.button-primary {
  background: var(--color-cc9966);
  color: #000000;
}

$cc9966: #cc9966;

// Tailwind arbitrary value
class="bg-[#cc9966] text-white"