Camouflage Green
HEX: #78866B | Modern Palette
Color Specifications
#78866B
120, 134, 107
91°, 20% ,52%
10.45, 0, 20.15, 47.45
About Camouflage Green
Camouflage Green (#78866B) is a color with RGB(120, 134, 107) and HSL(91.11°, 20.15%, 52.55%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #796B86, which creates strong contrast. Its triadic palette includes #6B7886 and #866B78. The name comes from Camouflage Green (English).
- HEX: #78866B
- RGB: 120, 134, 107
- HSL: 91.11°, 20.15%, 52.55%
- Mood: Calm, Earthy
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #796B86
- Triadic colors: #6B7886, #866B78
- The name comes from Camouflage 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 #78866B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'camouflage' itself comes from the French 'camoufler' (to disguise), which gained prominence during WWI when the French army established a 'Section de Camouflage' in 1915. Prior to this, armies often wore bright, distinctive colors. The advent of more accurate and long-range weaponry necessitated the adoption of less conspicuous uniforms. 'Camouflage Green' became a staple color in military fatigues across many nations, evolving over time to suit different environments (e.g., forest, jungle, desert). Its use extends beyond military to hunting gear, outdoor equipment, and fashion.
First Recorded Use
The concept of camouflage in military uniforms became widespread during World War I (1914-1918). While specific color names like 'Camouflage Green' might have solidified later, the practical application of such a color dates to this period.
Cultural Associations
Camouflage Green is strongly associated with military, survival, and outdoor activities. It often evokes themes of stealth, practicality, and ruggedness. In fashion, it can be used to convey an edgy, utilitarian, or rebellious aesthetic. It's also a common color in environmental and nature-related branding due to its natural connotations.
Code Snippets
/* Background */
.element {
background-color: #78866B;
}
/* Text */
.element {
color: #78866B;
}
/* Border */
.element {
border: 1px solid #78866B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#78866B,
#876E9E
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#78866B,
#876E9E
);
}
// SCSS variable
$camouflage-green: #78866B;
// With RGB channels (useful for rgba() usage)
$camouflage-green-r: 120;
$camouflage-green-g: 134;
$camouflage-green-b: 107;
// Usage
.element {
background-color: $camouflage-green;
color: rgba($camouflage-green-r, $camouflage-green-g, $camouflage-green-b, 0.8);
}