Rifle Green
HEX: #444C38 | Modern Palette
Color Specifications
#444C38
68, 76, 56
84°, 26% ,29%
10.53, 0, 26.32, 70.2
About Rifle Green
Rifle Green (#444C38) is a color with RGB(68, 76, 56) and HSL(84°, 26.32%, 29.8%). It is commonly associated with Earthy moods. In design, it fits Muted styles and is suitable for Text, Border, Print. Its complementary color is #40384C, which creates strong contrast. Its triadic palette includes #38444C and #4C3844. The name comes from Rifle Green (English).
- HEX: #444C38
- RGB: 68, 76, 56
- HSL: 84°, 26.32%, 29.8%
- Mood: Earthy
- Style: Muted
- Use case: Text, Border, Print
- Complementary color: #40384C
- Triadic colors: #38444C, #4C3844
- The name comes from Rifle 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 #444C38 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Rifle Green' originated in the late 18th century with the formation of rifle regiments in various armies, most notably the British Army. Unlike the bright red coats worn by line infantry, riflemen were equipped with darker, less conspicuous uniforms to aid in camouflage and skirmishing tactics. This dark green was chosen for its ability to blend into natural environments, particularly forests and fields. The 95th Rifles (later The Rifle Brigade) of the British Army are perhaps the most famous unit to adopt this color, making it iconic. Over time, the color became synonymous with these elite light infantry units and their distinct role on the battlefield. It has since been adopted by other military and paramilitary organizations and remains a recognized color in fashion and design, often evoking a sense of tradition, military heritage, or ruggedness.
First Recorded Use
Late 18th century, specifically around the formation of rifle regiments.
Cultural Associations
Rifle Green is strongly associated with military history, particularly the Napoleonic Wars era and the British Army's rifle regiments. It symbolizes stealth, precision, and a departure from traditional bright military uniforms. In modern culture, it can be seen in military-inspired fashion, outdoor wear, and sometimes in branding that aims to convey durability, tradition, or a connection to nature. It is also a common color in heraldry and regimental insignia.
Code Snippets
/* Background */
.element {
background-color: #444C38;
}
/* Text */
.element {
color: #444C38;
}
/* Border */
.element {
border: 1px solid #444C38;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#444C38,
#483860
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#444C38,
#483860
);
}
// SCSS variable
$rifle-green: #444C38;
// With RGB channels (useful for rgba() usage)
$rifle-green-r: 68;
$rifle-green-g: 76;
$rifle-green-b: 56;
// Usage
.element {
background-color: $rifle-green;
color: rgba($rifle-green-r, $rifle-green-g, $rifle-green-b, 0.8);
}