Web Safe Color

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#99FFCC
RGBrgb(153, 255, 204)
HSLhsl(150, 100%, 80%)
HSVhsv(150, 40%, 100%)
CMYK approx.cmyk(40, 0, 20, 0)
CSS keyword99ffcc

Contrast and classification

LightLightness1.20:1Contrast with white17.53:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#A3FFD1

White 30%
#B8FFDB

White 70%
#E0FFF0

White 90%
#F5FFFA

Black 10%
#8AE6B8

Black 30%
#6BB38F

Black 70%
#2E4D3D

Black 90%
#0F1A14

Harmony palettes

Complementary

#660033
#8B3D64

Analogous

#A5FFC6
#99F9D2

Triadic

#FFCC99
#CC99FF

Split complementary

#822E58
#54002A

Using 99ffcc

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

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

$99ffcc: #99ffcc;

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