Web Safe Color

Copy-ready color values

HEX#CCFF66
RGBrgb(204, 255, 102)
HSLhsl(80, 100%, 70%)
HSVhsv(80, 60%, 100%)
CMYK approx.cmyk(20, 0, 60, 0)

Color value table

FormatValueCopy
HEX#CCFF66
RGBrgb(204, 255, 102)
HSLhsl(80, 100%, 70%)
HSVhsv(80, 60%, 100%)
CMYK approx.cmyk(20, 0, 60, 0)
CSS keywordccff66

Contrast and classification

LightLightness1.16:1Contrast with white18.06:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#D1FF75

White 30%
#DBFF94

White 70%
#F0FFD1

White 90%
#FAFFF0

Black 10%
#B8E65C

Black 30%
#8FB347

Black 70%
#3D4D1F

Black 90%
#141A0A

Harmony palettes

Complementary

#330099
#643DB1

Analogous

#D2FF72
#CCED78

Triadic

#FF66CC
#66CCFF

Split complementary

#582EAB
#2A007D

Using Ccff66

Ccff66 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-ccff66: #ccff66;
}

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

$ccff66: #ccff66;

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