Web Safe Color

Copy-ready color values

HEX#669966
RGBrgb(102, 153, 102)
HSLhsl(120, 20%, 50%)
HSVhsv(120, 33%, 60%)
CMYK approx.cmyk(33, 0, 33, 40)

Color value table

FormatValueCopy
HEX#669966
RGBrgb(102, 153, 102)
HSLhsl(120, 20%, 50%)
HSVhsv(120, 33%, 60%)
CMYK approx.cmyk(33, 0, 33, 40)
CSS keyword669966

Contrast and classification

DarkLightness3.33:1Contrast with white6.31:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#75A375

White 30%
#94B894

White 70%
#D1E0D1

White 90%
#F0F5F0

Black 10%
#5C8A5C

Black 30%
#476B47

Black 70%
#1F2E1F

Black 90%
#0A0F0A

Harmony palettes

Complementary

#996699
#B18BB1

Analogous

#6C9966
#66936C

Triadic

#996666
#666699

Split complementary

#AB82AB
#7D547D

Using 669966

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

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

$669966: #669966;

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