Web Safe Color

Copy-ready color values

HEX#99CC99
RGBrgb(153, 204, 153)
HSLhsl(120, 33%, 70%)
HSVhsv(120, 25%, 80%)
CMYK approx.cmyk(25, 0, 25, 20)

Color value table

FormatValueCopy
HEX#99CC99
RGBrgb(153, 204, 153)
HSLhsl(120, 33%, 70%)
HSVhsv(120, 25%, 80%)
CMYK approx.cmyk(25, 0, 25, 20)
CSS keyword99cc99

Contrast and classification

LightLightness1.83:1Contrast with white11.45:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#A3D1A3

White 30%
#B8DBB8

White 70%
#E0F0E0

White 90%
#F5FAF5

Black 10%
#8AB88A

Black 30%
#6B8F6B

Black 70%
#2E3D2E

Black 90%
#0F140F

Harmony palettes

Complementary

#663366
#8B648B

Analogous

#9FCC99
#99C69F

Triadic

#CC9999
#9999CC

Split complementary

#825882
#542A54

Using 99cc99

99cc99 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-99cc99: #99cc99;
}

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

$99cc99: #99cc99;

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