Laurel Green
HEX: #A9BA9D | Modern Palette
Color Specifications
#A9BA9D
169, 186, 157
95°, 17% ,67%
9, 0, 16, 27
About Laurel Green
Laurel Green (#A9BA9D) is a color with RGB(169, 186, 157) and HSL(95.2°, 17.4%, 67.3%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #AE9DBA, which creates strong contrast. Its triadic palette includes #9DA9BA and #BA9DA9. The name comes from Laurel Green (English).
- HEX: #A9BA9D
- RGB: 169, 186, 157
- HSL: 95.2°, 17.4%, 67.3%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #AE9DBA
- Triadic colors: #9DA9BA, #BA9DA9
- The name comes from Laurel 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 #A9BA9D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The laurel tree (Laurus nobilis) has been symbolic throughout history, representing victory, honor, and peace in ancient Greek and Roman cultures. Its leaves are a distinctive, somewhat muted, and often slightly greyish-green. The color 'Laurel Green' captures this specific hue, distinguishing it from brighter or darker greens. Its popularity as a named color grew as interior design, fashion, and art began to categorize and market specific shades more precisely.
First Recorded Use
While green has always existed, the specific naming 'Laurel Green' as a distinct color shade likely emerged with the standardization of color names in paints, dyes, and fashion. References to 'laurel green' appear in literature and commercial contexts from the late 19th century onwards.
Cultural Associations
The color Laurel Green often evokes a sense of nature, tranquility, and classical elegance due to its association with the laurel tree's symbolism. It's a sophisticated and understated green, making it popular in traditional and contemporary design for its calming and grounding qualities. It can be seen in various applications, from home decor and fashion to automotive paints.
Code Snippets
/* Background */
.element {
background-color: #A9BA9D;
}
/* Text */
.element {
color: #A9BA9D;
}
/* Border */
.element {
border: 1px solid #A9BA9D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A9BA9D,
#AE9DBA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A9BA9D,
#AE9DBA
);
}
// SCSS variable
$laurel-green: #A9BA9D;
// With RGB channels (useful for rgba() usage)
$laurel-green-r: 169;
$laurel-green-g: 186;
$laurel-green-b: 157;
// Usage
.element {
background-color: $laurel-green;
color: rgba($laurel-green-r, $laurel-green-g, $laurel-green-b, 0.8);
}