Dark green color: code #006400

Dark green

#006400

Color codes

  • HEX#006400
  • RGBrgb(0, 100, 0)
  • HSLhsl(120, 100%, 20%)
  • HSVhsv(120, 100%, 39%)
  • CMYKcmyk(100%, 0%, 100%, 61%)
  • LABlab(36.2% -43.4 41.9)
  • OKLCHoklch(43.6% 0.148 142.5)

About the color Dark green

Dark green has the HEX code #006400, which corresponds to rgb(0, 100, 0) in the RGB model. On the color wheel its hue sits at 120°, with 100% saturation and 20% lightness (hsl(120, 100%, 20%)).

Because of its hue it reads as a cool color: it tends to feel calm and distant, and it visually “recedes” in a composition.

As a background it calls for light text: white reaches a 7.43:1 contrast ratio on it, versus 2.82:1 for black.

For print, the approximate conversion is cmyk(100%, 0%, 100%, 61%). Always confirm with your printer’s color profile, because the result depends on paper and ink.

Lighter tints

Darker shades

Color combinations with Dark green

Complementary

#006400 · #660066

Analogous

#336600 · #006400 · #006633

Triadic

#006400 · #000066 · #660000

Tetradic

#006400 · #003366 · #660066 · #663300

Split-complementary

#006400 · #330066 · #660033

Monochromatic

#000000 · #003300 · #006400 · #00B300 · #00FF00

Dark green with white and black text

White text Aa Bb Cc 123
7.43:1 · AAA
Black text Aa Bb Cc 123
2.82:1 · fails WCAG

Test other pairs in the contrast checker

How to use it in CSS

:root {
  --color-dark-green: #006400;
  --color-dark-green-rgb: 0, 100, 0;
}

.elemento {
  background-color: var(--color-dark-green);
  color: #FFFFFF;
}