Army Green

HEX: #4B5320 | Modern Palette

On White
8.21:1
PASS
On Black
2.56:1
FAIL

Color Specifications

HEX
#4B5320
RGB
75, 83, 32
HSL
69°, 61% ,32%
CMYK
9.64, 0, 61.45, 67.45

About Army Green

Army Green (#4B5320) is a color with RGB(75, 83, 32) and HSL(69.41°, 61.45%, 32.55%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #282053, which creates strong contrast. Its triadic palette includes #204B53 and #53204B. The name comes from Army Green (English).

  • HEX: #4B5320
  • RGB: 75, 83, 32
  • HSL: 69.41°, 61.45%, 32.55%
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #282053
  • Triadic colors: #204B53, #53204B
  • The name comes from Army 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 #4B5320 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #515120
Protanopia #525220
Tritanopia #504F4F
Achromatopsia #4F4F4F

Frequently Asked Questions

Army Green (#4B5320) is a color with RGB(75, 83, 32) and HSL(69.41°, 61.45%, 32.55%).

#4B5320 pairs strongly with #282053 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#4B5320 is suitable for Text, Button, Accent and works well with Warm styles.

The name Army Green is linked to Army Green from English, meaning A color resembling the green used in military uniforms..

Name, History & Etymology

Origin Word Army Green
Meaning A color resembling the green used in military uniforms.
Language English
First Recorded Use Late 19th Century

History

Before the late 19th century, military uniforms often featured bright, distinctive colors (e.g., British 'Redcoats'). The shift towards 'army green' and similar drab colors was driven by the increasing lethality of firearms and the tactical advantage of camouflage. The British Army was among the first to widely adopt khaki (a brownish-green) in India in the mid-19th century, which then influenced other nations. The specific shade of 'Army Green' (#4b5320) is a deep, muted olive green, characteristic of many military fatigues and equipment. Its widespread adoption across various armed forces solidified its association with military apparel and equipment.

First Recorded Use

The concept of 'army green' as a standardized color for military uniforms gained prominence in the late 19th century, particularly with the adoption of drab and olive-drab colors by various armies to provide camouflage rather than the more conspicuous colors of previous eras.

Cultural Associations

Culturally, 'Army Green' is strongly associated with the military, discipline, utility, and ruggedness. It is often used in fashion to evoke a sense of utilitarian style, workwear, or a vintage military aesthetic. Beyond military contexts, it's a popular color in outdoor gear, workwear, and casual fashion, symbolizing practicality and durability. It can also carry connotations of nature and earthiness due to its green hue.

Similar Named Colors

Dark Moss Green #4A5D23 ΔE 4.33
Antique Bronze #665D1E ΔE 8.26
Dark Olive Green #556B2F ΔE 8.54
Rifle Green #414833 ΔE 9.36

Code Snippets

/* Background */
.element {
    background-color: #4B5320;
}

/* Text */
.element {
    color: #4B5320;
}

/* Border */
.element {
    border: 1px solid #4B5320;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #4B5320,
        #302086
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #4B5320,
        #302086
    );
}

// SCSS variable
$army-green: #4B5320;

// With RGB channels (useful for rgba() usage)
$army-green-r: 75;
$army-green-g: 83;
$army-green-b: 32;

// Usage
.element {
    background-color: $army-green;
    color: rgba($army-green-r, $army-green-g, $army-green-b, 0.8);
}