Rifle Green

HEX: #444C38 | Modern Palette

On White
8.99:1
PASS
On Black
2.34:1
FAIL

Color Specifications

HEX
#444C38
RGB
68, 76, 56
HSL
84°, 26% ,29%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Earthy
Style
Muted
Use case
Text Border Print

Accessibility Simulation

Deuteranopia #4A4A38
Protanopia #4B4B38
Tritanopia #474A4A
Achromatopsia #494949

Frequently Asked Questions

Rifle Green (#444C38) is a color with RGB(68, 76, 56) and HSL(84°, 26.32%, 29.8%).

#444C38 pairs strongly with #40384C as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#444C38 is suitable for Text, Border, Print and works well with Muted styles.

#444C38 is commonly associated with Earthy.

The name Rifle Green is linked to Rifle Green from English, meaning A dark shade of green, historically associated with the uniforms of rifle regiments..

Name, History & Etymology

Origin Word Rifle Green
Meaning A dark shade of green, historically associated with the uniforms of rifle regiments.
Language English
First Recorded Use 18th Century

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.

Similar Named Colors

Rifle Green #414833 ΔE 1.45
Kombu Green #354230 ΔE 4.32
Gray Asparagus #465945 ΔE 5.75
Ebony #555D50 ΔE 6.87

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);
}