Dark Moss Green
HEX: #4A5D23 | Modern Palette
Color Specifications
#4A5D23
74, 93, 35
79°, 62% ,36%
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
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 #4A5D23 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}