Olive Drab
HEX: #6B8E23 | Modern Palette
Color Specifications
#6B8E23
107, 142, 35
79°, 75% ,55%
24.65, 0, 75.35, 44.31
About Olive Drab
Olive Drab (#6B8E23) is a color with RGB(107, 142, 35) and HSL(79.63°, 75.35%, 55.69%). In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #46238E, which creates strong contrast. Its triadic palette includes #236B8E and #8E236B. The name comes from Olive Drab (English).
- HEX: #6B8E23
- RGB: 107, 142, 35
- HSL: 79.63°, 75.35%, 55.69%
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #46238E
- Triadic colors: #236B8E, #8E236B
- The name comes from Olive Drab (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 #6B8E23 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Olive Drab' emerged in the late 19th century as various militaries began to adopt less conspicuous uniform colors for camouflage purposes. Prior to this, bright colors were common. The 'drab' component refers to a dull, light-brownish-yellow color, often used for plain, undyed fabrics. When combined with 'olive,' it describes the specific dull, greenish-brown hue. It became the standard color for U.S. Army uniforms and equipment during World War I and was widely used through World War II and the Korean War. Its use has continued in various forms and shades within military contexts globally.
First Recorded Use
1890s
Cultural Associations
Olive Drab is strongly associated with military aesthetics, particularly American military history from the early to mid-20th century. It evokes images of wartime, utility, ruggedness, and practicality. Beyond military use, it has been adopted in fashion, workwear, and outdoor gear, often to convey a sense of durability, earthiness, or a utilitarian style. It can also carry connotations of vintage or retro military surplus items. In some contexts, it might be seen as a symbol of peace or protest when associated with anti-war movements that repurposed military clothing.
Code Snippets
/* Background */
.element {
background-color: #6B8E23;
}
/* Text */
.element {
color: #6B8E23;
}
/* Border */
.element {
border: 1px solid #6B8E23;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6B8E23,
#7139E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6B8E23,
#7139E3
);
}
// SCSS variable
$olive-drab: #6B8E23;
// With RGB channels (useful for rgba() usage)
$olive-drab-r: 107;
$olive-drab-g: 142;
$olive-drab-b: 35;
// Usage
.element {
background-color: $olive-drab;
color: rgba($olive-drab-r, $olive-drab-g, $olive-drab-b, 0.8);
}