Olive Green
HEX: #BAB86C | Modern Palette
Color Specifications
#BAB86C
186, 184, 108
58°, 36% ,57%
0, 1, 42, 27
About Olive Green
Olive Green (#BAB86C) is a color with RGB(186, 184, 108) and HSL(58.5°, 36.1%, 57.6%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #6C6EBA, which creates strong contrast. Its triadic palette includes #6CBAB8 and #B86CBA. The name comes from Olive Green (English).
- HEX: #BAB86C
- RGB: 186, 184, 108
- HSL: 58.5°, 36.1%, 57.6%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #6C6EBA
- Triadic colors: #6CBAB8, #B86CBA
- The name comes from Olive 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 #BAB86C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'olive' itself has ancient roots, referring to the fruit and tree. As a color descriptor, 'olive green' became more formalized with the advent of standardized color charts and industrial dyes. Its most significant historical impact is its extensive use in military camouflage and uniforms across various nations, particularly from the late 19th century through the 20th century. It was chosen for its ability to blend into natural environments. Beyond military use, it has been a popular color in fashion, interior design, and art, often evoking a sense of nature, earthiness, or vintage aesthetics.
First Recorded Use
The term 'olive green' as a specific color name gained prominence in the late 19th century, though descriptions of olive-like green colors existed earlier. Its widespread adoption often correlates with its use in military uniforms.
Cultural Associations
**Military Association:** Strongly associated with military, army, and camouflage due to its widespread use in uniforms. **Nature & Earthiness:** Often evokes feelings of nature, the outdoors, earth, and organic elements. **Vintage & Retro:** Frequently used in designs to create a vintage or retro aesthetic, especially from the mid-20th century. **Symbolism:** Can symbolize peace (via the olive branch), but also conflict (via military association). It can also represent growth, harmony, and stability. **Fashion:** A versatile color in fashion, often seen as a neutral or an earthy accent, popular in autumn collections.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #BAB86C;
}
/* Text */
.element {
color: #BAB86C;
}
/* Border */
.element {
border: 1px solid #BAB86C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BAB86C,
#6C6EBA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BAB86C,
#6C6EBA
);
}
// SCSS variable
$olive-green: #BAB86C;
// With RGB channels (useful for rgba() usage)
$olive-green-r: 186;
$olive-green-g: 184;
$olive-green-b: 108;
// Usage
.element {
background-color: $olive-green;
color: rgba($olive-green-r, $olive-green-g, $olive-green-b, 0.8);
}