Field Drab
HEX: #6C541E | Modern Palette
Color Specifications
#6C541E
108, 84, 30
41°, 72% ,42%
0, 22.22, 72.22, 57.65
About Field Drab
Field Drab (#6C541E) is a color with RGB(108, 84, 30) and HSL(41.54°, 72.22%, 42.35%). It is commonly associated with Energetic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1E366C, which creates strong contrast. Its triadic palette includes #1E6C54 and #541E6C. The name comes from Field Drab (English).
- HEX: #6C541E
- RGB: 108, 84, 30
- HSL: 41.54°, 72.22%, 42.35%
- Mood: Energetic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1E366C
- Triadic colors: #1E6C54, #541E6C
- The name comes from Field 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 #6C541E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Field Drab' emerged in the early 20th century, specifically gaining prominence around World War I. 'Drab' itself has been used to describe dull, light brown colors since the 17th century, often associated with plain or uninteresting appearances. The addition of 'Field' explicitly linked it to military contexts, referring to the color of uniforms designed for camouflage in natural, often dry or earthy environments. It was officially adopted as a color standard by various militaries, including the U.S. Army, for its effectiveness in blending with terrain. Its use continued through World War II and beyond, though specific shades and names evolved.
First Recorded Use
1912
Cultural Associations
Culturally, 'Field Drab' is strongly associated with military uniforms, utility, and practicality. It evokes images of wartime, outdoor activities, and ruggedness. While not a color typically chosen for its aesthetic beauty in fashion, it is valued for its functionality and ability to recede into the background. It can also be seen in workwear and outdoor gear, reflecting its utilitarian roots. The term 'drab' itself carries connotations of dullness or lack of vibrancy, which is inherent in the color's purpose.
Code Snippets
/* Background */
.element {
background-color: #6C541E;
}
/* Text */
.element {
color: #6C541E;
}
/* Border */
.element {
border: 1px solid #6C541E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6C541E,
#1E4EBA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6C541E,
#1E4EBA
);
}
// SCSS variable
$field-drab: #6C541E;
// With RGB channels (useful for rgba() usage)
$field-drab-r: 108;
$field-drab-g: 84;
$field-drab-b: 30;
// Usage
.element {
background-color: $field-drab;
color: rgba($field-drab-r, $field-drab-g, $field-drab-b, 0.8);
}