Web Safe Color

Copy-ready color values

HEX#006600
RGBrgb(0, 102, 0)
HSLhsl(120, 100%, 20%)
HSVhsv(120, 100%, 40%)
CMYK approx.cmyk(100, 0, 100, 60)

Color value table

FormatValueCopy
HEX#006600
RGBrgb(0, 102, 0)
HSLhsl(120, 100%, 20%)
HSVhsv(120, 100%, 40%)
CMYK approx.cmyk(100, 0, 100, 60)
CSS keyword006600

Contrast and classification

DarkLightness7.24:1Contrast with white2.90:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A751A

White 30%
#4D944D

White 70%
#B3D1B3

White 90%
#E6F0E6

Black 10%
#005C00

Black 30%
#004700

Black 70%
#001F00

Black 90%
#000A00

Harmony palettes

Complementary

#FF99FF
#FFB1FF

Analogous

#0C6600
#005A0C

Triadic

#660000
#000066

Split complementary

#FFABFF
#D17DD1

Using 006600

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

.button-primary {
  background: var(--color-006600);
  color: #ffffff;
}

$006600: #006600;

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