Moss Green
HEX: #8A9A5B | Modern Palette
Color Specifications
#8A9A5B
138, 154, 91
75°, 40% ,60%
10.39, 0, 40.91, 39.61
About Moss Green
Moss Green (#8A9A5B) is a color with RGB(138, 154, 91) and HSL(75.24°, 40.91%, 60.39%). It is commonly associated with Earthy moods. In design, it is suitable for Text, Logo, Print. Its complementary color is #6B5B9A, which creates strong contrast. Its triadic palette includes #5B8A9A and #9A5B8A. The name comes from Moss Green (English).
- HEX: #8A9A5B
- RGB: 138, 154, 91
- HSL: 75.24°, 40.91%, 60.39%
- Mood: Earthy
- Use case: Text, Logo, Print
- Complementary color: #6B5B9A
- Triadic colors: #5B8A9A, #9A5B8A
- The name comes from 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 #8A9A5B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'green' has existed since ancient times, but specific shades like 'moss green' are more recent developments in color nomenclature. As dyes became more sophisticated and the ability to reproduce specific shades improved, there did a need for more precise descriptive terms. 'Moss Green' likely emerged as a way to differentiate a particular muted, earthy, and often yellowish-green from brighter or bluer greens. It gained popularity in fashion, interior design, and art, particularly during periods that favored naturalistic palettes, such as the Arts and Crafts movement and later in mid-century modern design. Its association with nature has given it a timeless appeal.
First Recorded Use
The exact first recorded use of 'Moss Green' as a specific color name is difficult to pinpoint to a single date or document. However, descriptive color names based on natural objects became more common in English during the late 18th and early 19th centuries, coinciding with increased interest in botany and natural history. Early fashion and textile descriptions from this period show an emergence of such specific nature-based greens.
Cultural Associations
Moss Green is widely associated with nature, tranquility, and organic aesthetics. It often evokes feelings of peace, growth, and earthiness. In fashion, it's considered a versatile and sophisticated neutral, often used in autumn and winter collections. In interior design, it brings a sense of calm and connection to the outdoors. It's also frequently seen in military uniforms (due to its camouflage properties), outdoor gear, and traditional British and Irish textiles. Its muted quality makes it less aggressive than brighter greens, lending it an air of understated elegance.
Code Snippets
/* Background */
.element {
background-color: #8A9A5B;
}
/* Text */
.element {
color: #8A9A5B;
}
/* Border */
.element {
border: 1px solid #8A9A5B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8A9A5B,
#8671C3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8A9A5B,
#8671C3
);
}
// SCSS variable
$moss-green: #8A9A5B;
// With RGB channels (useful for rgba() usage)
$moss-green-r: 138;
$moss-green-g: 154;
$moss-green-b: 91;
// Usage
.element {
background-color: $moss-green;
color: rgba($moss-green-r, $moss-green-g, $moss-green-b, 0.8);
}