Myrtle Green
HEX: #317873 | Modern Palette
Color Specifications
#317873
49, 120, 115
175°, 59% ,47%
59.17, 0, 4.17, 52.94
About Myrtle Green
Myrtle Green (#317873) is a color with RGB(49, 120, 115) and HSL(175.77°, 59.17%, 47.06%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #783136, which creates strong contrast. Its triadic palette includes #733178 and #787331. The name comes from Myrtle Green (English).
- HEX: #317873
- RGB: 49, 120, 115
- HSL: 175.77°, 59.17%, 47.06%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #783136
- Triadic colors: #733178, #787331
- The name comes from Myrtle Green (English).
Live Components
Color Palettes
Myrtle Green #317873 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Myrtle Green #317873 pairs with #783136 as its complementary color, and #733178 and #787331 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Myrtle Green' gained popularity in the late 19th and early 20th centuries, particularly in fashion and interior design. It is a deep, muted green, often with a slight blue or grey undertone, reflecting the waxy, dark leaves of thertle plant (Myrtus communis). Its first recorded use as a color name was in 1892. It was commonly used in military uniforms, school uniforms, and for formal wear due to its sophisticated and understated appearance. The color experienced a resurgence in the mid-20th century and continues to be used in various applications today.
First Recorded Use
1892
Cultural Associations
The myrtle plant itself has significant cultural symbolism, often associated with love, peace, and immortality in various ancient cultures (Greek, Roman, Hebrew). While the color 'Myrtle Green' doesn't directly carry all these symbolic meanings, its association with the plant lends it an air of natural elegance and timelessness. It is often perceived as a classic, refined, and somewhat traditional color.
Code Snippets
/* Background */
.element {
background-color: #317873;
}
/* Text */
.element {
color: #317873;
}
/* Border */
.element {
border: 1px solid #317873;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#317873,
#BF313B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#317873,
#BF313B
);
}
// SCSS variable
$myrtle-green: #317873;
// With RGB channels (useful for rgba() usage)
$myrtle-green-r: 49;
$myrtle-green-g: 120;
$myrtle-green-b: 115;
// Usage
.element {
background-color: $myrtle-green;
color: rgba($myrtle-green-r, $myrtle-green-g, $myrtle-green-b, 0.8);
}