Camouflage Green

HEX: #78866B | Modern Palette

On White
3.87:1
FAIL
On Black
5.42:1
PASS

Color Specifications

HEX
#78866B
RGB
120, 134, 107
HSL
91°, 20% ,52%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool

Accessibility Simulation

Deuteranopia #82826B
Protanopia #85856B
Tritanopia #7C8383
Achromatopsia #818181

Frequently Asked Questions

Camouflage Green (#78866B) is a color with RGB(120, 134, 107) and HSL(91.11°, 20.15%, 52.55%).

#78866B pairs strongly with #796B86 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#78866B is suitable for Text, Background, Border and works well with Muted, Cool styles.

#78866B is commonly associated with Calm, Earthy.

The name Camouflage Green is linked to Camouflage Green from English, meaning A shade of green specifically designed to blend in with natural foliage, often used in military contexts..

Name, History & Etymology

Origin Word Camouflage Green
Meaning A shade of green specifically designed to blend in with natural foliage, often used in military contexts.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Xanadu #738678 ΔE 5.20
Smoke #738276 ΔE 5.84
Artichoke #8F9779 ΔE 6.79
Russian Green #679267 ΔE 8.52

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);
}