Army Green
HEX: #4B5320 | Modern Palette
Color Specifications
#4B5320
75, 83, 32
69°, 61% ,32%
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
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 #4B5320 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}