Dark green color: code #006400
Dark green
#006400
Color codes
- HEX
#006400 - RGB
rgb(0, 100, 0) - HSL
hsl(120, 100%, 20%) - HSV
hsv(120, 100%, 39%) - CMYK
cmyk(100%, 0%, 100%, 61%) - LAB
lab(36.2% -43.4 41.9) - OKLCH
oklch(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
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;
}