Web Safe Color

Copy-ready color values

HEX#CCFF99
RGBrgb(204, 255, 153)
HSLhsl(90, 100%, 80%)
HSVhsv(90, 40%, 100%)
CMYK approx.cmyk(20, 0, 40, 0)

Color value table

FormatValueCopy
HEX#CCFF99
RGBrgb(204, 255, 153)
HSLhsl(90, 100%, 80%)
HSVhsv(90, 40%, 100%)
CMYK approx.cmyk(20, 0, 40, 0)
CSS keywordccff99

Contrast and classification

LightLightness1.15:1Contrast with white18.33:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#D1FFA3

White 30%
#DBFFB8

White 70%
#F0FFE0

White 90%
#FAFFF5

Black 10%
#B8E68A

Black 30%
#8FB36B

Black 70%
#3D4D2E

Black 90%
#141A0F

Harmony palettes

Complementary

#330066
#643D8B

Analogous

#D2FF9F
#CCF3A5

Triadic

#FF99CC
#99CCFF

Split complementary

#582E82
#2A0054

Using Ccff99

Ccff99 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-ccff99: #ccff99;
}

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

$ccff99: #ccff99;

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