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
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 #1C352D from deepest shade to lightest tint.
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);
}