Feldgrau
HEX: #4D5D53 | Modern Palette
Color Specifications
#4D5D53
77, 93, 83
142°, 17% ,36%
17.2, 0, 10.75, 63.53
About Feldgrau
Feldgrau (#4D5D53) is a color with RGB(77, 93, 83) and HSL(142.5°, 17.2%, 36.47%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #5D4D57, which creates strong contrast. Its triadic palette includes #534D5D and #5D534D. The name comes from Feldgrau (German).
- HEX: #4D5D53
- RGB: 77, 93, 83
- HSL: 142.5°, 17.2%, 36.47%
- Mood: Calm, Earthy
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #5D4D57
- Triadic colors: #534D5D, #5D534D
- The name comes from Feldgrau (German).
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 #4D5D53 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Before 1907, German infantry uniforms were typically dark blue (Prussian blue). The experience of the Boer War (1899-1902) and the Russo-Japanese War (1904-1905) highlighted the tactical disadvantage of brightly colored uniforms in modern warfare. Germany, along with other nations, began to adopt more camouflaged colors. 'Feldgrau' was chosen for its ability to blend into various European landscapes, offering better concealment than the previous blue. It was a significant shift in military uniform design and became synonymous with the German military throughout both World War I and World War II, though the exact shade varied slightly over time and between different manufacturers.
First Recorded Use
The term 'Feldgrau' as a specific uniform color was officially introduced by the German Imperial Army in 1907.
Cultural Associations
Feldgrau is deeply embedded in German military history and popular culture. It is often associated with the image of the German soldier (Landser) from the World Wars. The color itself evokes a sense of seriousness, practicality, and the harsh realities of conflict. Beyond its military context, the term 'Feldgrau' can sometimes be used more broadly in German to describe a drab, greenish-grey color. Its historical significance makes it a recognizable symbol of a particular era in German history.
Code Snippets
/* Background */
.element {
background-color: #4D5D53;
}
/* Text */
.element {
color: #4D5D53;
}
/* Border */
.element {
border: 1px solid #4D5D53;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4D5D53,
#6D4D61
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4D5D53,
#6D4D61
);
}
// SCSS variable
$feldgrau: #4D5D53;
// With RGB channels (useful for rgba() usage)
$feldgrau-r: 77;
$feldgrau-g: 93;
$feldgrau-b: 83;
// Usage
.element {
background-color: $feldgrau;
color: rgba($feldgrau-r, $feldgrau-g, $feldgrau-b, 0.8);
}