Dark Moss Green

HEX: #4A5D23 | Modern Palette

On White
7.29:1
PASS
On Black
2.88:1
FAIL

Color Specifications

HEX
#4A5D23
RGB
74, 93, 35
HSL
79°, 62% ,36%
CMYK
20.43, 0, 62.37, 63.53

About Dark Moss Green

Dark Moss Green (#4A5D23) is a color with RGB(74, 93, 35) and HSL(79.66°, 62.37%, 36.47%). In design, it is suitable for Text, Button, Accent. Its complementary color is #36235D, which creates strong contrast. Its triadic palette includes #234A5D and #5D234A. The name comes from Dark Moss Green (English).

  • HEX: #4A5D23
  • RGB: 74, 93, 35
  • HSL: 79.66°, 62.37%, 36.47%
  • Use case: Text, Button, Accent
  • Complementary color: #36235D
  • Triadic colors: #234A5D, #5D234A
  • The name comes from Dark Moss 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 #4A5D23 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #585824
Protanopia #5B5B23
Tritanopia #505858
Achromatopsia #565656

Frequently Asked Questions

Dark Moss Green (#4A5D23) is a color with RGB(74, 93, 35) and HSL(79.66°, 62.37%, 36.47%).

#4A5D23 pairs strongly with #36235D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#4A5D23 is suitable for Text, Button, Accent.

The name Dark Moss Green is linked to Dark Moss Green from English, meaning A deep, muted green color reminiscent of moss growing in shaded, damp environments..

Name, History & Etymology

Origin Word Dark Moss Green
Meaning A deep, muted green color reminiscent of moss growing in shaded, damp environments.
Language English
First Recorded Use Late 19th to Early 20th Century (as a specific color name)

History

The concept of 'moss green' has existed for centuries, referring to the various shades of green found in moss. Adding 'dark' specifies a deeper, less vibrant version. This particular shade (#4a5d23) is a common representation of this concept, often found in nature-inspired palettes. Its popularity has fluctuated, but it remains a classic, earthy tone. It's frequently seen in military uniforms (though often slightly different shades), outdoor gear, and traditional interior design.

First Recorded Use

While 'dark green' and 'moss green' existed separately earlier, the specific compound 'Dark Moss Green' as a named color likely gained traction with the standardization of color charts and dyes in the late 19th and early 20th centuries. Exact first documented use is difficult to pinpoint without extensive historical textile or paint catalog research, but it aligns with the period when more descriptive and nuanced color names became common.

Cultural Associations

Dark Moss Green evokes feelings of nature, tranquility, and earthiness. It is often associated with forests, wilderness, and a sense of groundedness. In fashion, it can be seen as sophisticated and understated. In interior design, it brings a sense of calm and connection to the outdoors. It's a versatile color that can be both rustic and elegant, depending on its application and accompanying colors.

Similar Named Colors

Army Green #4B5320 ΔE 4.33
Dark Olive Green #556B2F ΔE 4.85
Mughal Green #306030 ΔE 7.68
Lincoln Green #195905 ΔE 8.73

Code Snippets

/* Background */
.element {
    background-color: #4A5D23;
}

/* Text */
.element {
    color: #4A5D23;
}

/* Border */
.element {
    border: 1px solid #4A5D23;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #4A5D23,
        #492397
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #4A5D23,
        #492397
    );
}

// SCSS variable
$dark-moss-green: #4A5D23;

// With RGB channels (useful for rgba() usage)
$dark-moss-green-r: 74;
$dark-moss-green-g: 93;
$dark-moss-green-b: 35;

// Usage
.element {
    background-color: $dark-moss-green;
    color: rgba($dark-moss-green-r, $dark-moss-green-g, $dark-moss-green-b, 0.8);
}