Web Safe Color

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#CCCC66
RGBrgb(204, 204, 102)
HSLhsl(60, 50%, 60%)
HSVhsv(60, 50%, 80%)
CMYK approx.cmyk(0, 0, 50, 20)
CSS keywordcccc66

Contrast and classification

LightLightness1.69:1Contrast with white12.40:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#D1D175

White 30%
#DBDB94

White 70%
#F0F0D1

White 90%
#FAFAF0

Black 10%
#B8B85C

Black 30%
#8F8F47

Black 70%
#3D3D1F

Black 90%
#14140A

Harmony palettes

Complementary

#333399
#6464B1

Analogous

#CCCC72
#CCC072

Triadic

#CC66CC
#66CCCC

Split complementary

#5858AB
#2A2A7D

Using Cccc66

Cccc66 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-cccc66: #cccc66;
}

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

$cccc66: #cccc66;

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