Web Safe Color

Copy-ready color values

HEX#66CC99
RGBrgb(102, 204, 153)
HSLhsl(150, 50%, 60%)
HSVhsv(150, 50%, 80%)
CMYK approx.cmyk(50, 0, 25, 20)

Color value table

FormatValueCopy
HEX#66CC99
RGBrgb(102, 204, 153)
HSLhsl(150, 50%, 60%)
HSVhsv(150, 50%, 80%)
CMYK approx.cmyk(50, 0, 25, 20)
CSS keyword66cc99

Contrast and classification

LightLightness1.97:1Contrast with white10.66:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#75D1A3

White 30%
#94DBB8

White 70%
#D1F0E0

White 90%
#F0FAF5

Black 10%
#5CB88A

Black 30%
#478F6B

Black 70%
#1F3D2E

Black 90%
#0A140F

Harmony palettes

Complementary

#993366
#B1648B

Analogous

#72CC93
#66C69F

Triadic

#CC9966
#9966CC

Split complementary

#AB5882
#7D2A54

Using 66cc99

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

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

$66cc99: #66cc99;

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