Web Safe Color

Copy-ready color values

HEX#669900
RGBrgb(102, 153, 0)
HSLhsl(80, 100%, 30%)
HSVhsv(80, 100%, 60%)
CMYK approx.cmyk(33, 0, 100, 40)

Color value table

FormatValueCopy
HEX#669900
RGBrgb(102, 153, 0)
HSLhsl(80, 100%, 30%)
HSVhsv(80, 100%, 60%)
CMYK approx.cmyk(33, 0, 100, 40)
CSS keyword669900

Contrast and classification

DarkLightness3.43:1Contrast with white6.12:1Contrast with blackYellow / GreenColor family

Shade and tint preview

White 10%
#75A31A

White 30%
#94B84D

White 70%
#D1E0B3

White 90%
#F0F5E6

Black 10%
#5C8A00

Black 30%
#476B00

Black 70%
#1F2E00

Black 90%
#0A0F00

Harmony palettes

Complementary

#9966FF
#B18BFF

Analogous

#6C990C
#668712

Triadic

#990066
#006699

Split complementary

#AB82FF
#7D54D1

Using 669900

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

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

$669900: #669900;

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