Olive Green

HEX: #BAB86C | Modern Palette

On White
2.07:1
FAIL
On Black
10.16:1
PASS

Color Specifications

HEX
#BAB86C
RGB
186, 184, 108
HSL
58°, 36% ,57%
CMYK
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

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 #BAB86C from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #B9B96C
Protanopia #B8B86C
Tritanopia #C1B1B1
Achromatopsia #B4B4B4

Frequently Asked Questions

Olive Green (#BAB86C) is a color with RGB(186, 184, 108) and HSL(58.5°, 36.1%, 57.6%).

#BAB86C pairs strongly with #6C6EBA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#BAB86C is suitable for Text, Logo, Print and works well with Warm styles.

#BAB86C is commonly associated with Earthy.

The name Olive Green is linked to Olive Green from English, meaning A color resembling that of an unripe olive..

Name, History & Etymology

Origin Word Olive Green
Meaning A color resembling that of an unripe olive.
Language English
First Recorded Use Late 19th Century

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

Dark Khaki #BDB76B ΔE 1.17
Vegas Gold #C5B358 ΔE 5.44
Sage #BCB88A ΔE 6.34
Sand #C2B280 ΔE 7.04

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