Medium Jungle Green
HEX: #1C352D | Modern Palette
Color Specifications
#1C352D
28, 53, 45
160°, 47% ,20%
47.17, 0, 15.09, 79.22
About Medium Jungle Green
Medium Jungle Green (#1C352D) is a color with RGB(28, 53, 45) and HSL(160.8°, 47.17%, 20.78%). It is commonly associated with Bold, Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #351C24, which creates strong contrast. Its triadic palette includes #2D1C35 and #352D1C. The name comes from Medium Jungle Green (English).
- HEX: #1C352D
- RGB: 28, 53, 45
- HSL: 160.8°, 47.17%, 20.78%
- Mood: Bold, Luxury
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #351C24
- Triadic colors: #2D1C35, #352D1C
- The name comes from Medium Jungle Green (English).
Live Components
Color Palettes
Medium Jungle Green #1C352D 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
Medium Jungle Green #1C352D pairs with #351C24 as its complementary color, and #2D1C35 and #352D1C 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 term 'jungle green' itself emerged to describe a deep, often somewhat muted or olive-toned green associated with military uniforms (especially during WWII and later conflicts in tropical regions) and the natural environment of jungles. Adding 'Medium' specifies its intensity relative to lighter or darker 'jungle greens.' This kind of descriptive naming became common in paint, textile, and digital color systems to differentiate similar shades.
First Recorded Use
Likely mid-20th century onwards, as color naming became more descriptive and standardized, particularly in commercial and design contexts. The specific combination 'Medium Jungle Green' suggests a more modern, nuanced approach to color naming.
Cultural Associations
The 'jungle' association brings connotations of nature, wilderness, adventure, and sometimes military contexts. Green, in general, is often linked to growth, renewal, nature, and tranquility. 'Jungle Green' specifically can evoke lush, dense, and sometimes mysterious environments. In fashion and interior design, it can be used to create earthy, natural, or sophisticated palettes.
Code Snippets
/* Background */
.element {
background-color: #1C352D;
}
/* Text */
.element {
color: #1C352D;
}
/* Border */
.element {
border: 1px solid #1C352D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1C352D,
#4E1C2C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1C352D,
#4E1C2C
);
}
// SCSS variable
$medium-jungle-green: #1C352D;
// With RGB channels (useful for rgba() usage)
$medium-jungle-green-r: 28;
$medium-jungle-green-g: 53;
$medium-jungle-green-b: 45;
// Usage
.element {
background-color: $medium-jungle-green;
color: rgba($medium-jungle-green-r, $medium-jungle-green-g, $medium-jungle-green-b, 0.8);
}