Dark Green (X11)
HEX: #006400 | Modern Palette
Color Specifications
#006400
0, 100, 0
120°, 100% ,39%
100, 0, 100, 60.78
About Dark Green (X11)
Dark Green (X11) (#006400) is a color with RGB(0, 100, 0) and HSL(120°, 100%, 39.22%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #640064, which creates strong contrast. Its triadic palette includes #000064 and #640000. The name comes from Dark Green (English).
- HEX: #006400
- RGB: 0, 100, 0
- HSL: 120°, 100%, 39.22%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #640064
- Triadic colors: #000064, #640000
- The name comes from Dark Green (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #006400 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'dark green' is ancient, referring to the deeper hues found in nature, such as dense forests or mature leaves. As a formal color name, its standardization is relatively recent, driven by digital color systems. The X11 color system, developed for the X Window System in the 1980s, provided a set of named colors for computer displays. This specific 'Dark Green (X11)' is one of the predefined colors within that system, ensuring consistent rendering across various platforms.
First Recorded Use
The term 'dark green' as a descriptive color combination has been in use for centuries, with 'dark' appearing in English from the Old English 'deorc' and 'green' from 'grēne'. Its specific use as a standardized color name, particularly with the X11 designation, emerged in the late 20th century.
Cultural Associations
Dark green often symbolizes nature, growth, and renewal, frequently appearing in environmental movements and military uniforms. It can also represent wealth and stability, particularly in Western cultures. Its presence in digital standards reflects the need for precise color communication in computing.
Code Snippets
/* Background */
.element {
background-color: #006400;
}
/* Text */
.element {
color: #006400;
}
/* Border */
.element {
border: 1px solid #006400;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#006400,
#C800C8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#006400,
#C800C8
);
}
// SCSS variable
$dark-green-(x11): #006400;
// With RGB channels (useful for rgba() usage)
$dark-green-(x11)-r: 0;
$dark-green-(x11)-g: 100;
$dark-green-(x11)-b: 0;
// Usage
.element {
background-color: $dark-green-(x11);
color: rgba($dark-green-(x11)-r, $dark-green-(x11)-g, $dark-green-(x11)-b, 0.8);
}