Deep Jungle Green
HEX: #004B49 | Modern Palette
Color Specifications
#004B49
0, 75, 73
178°, 100% ,29%
100, 0, 2.67, 70.59
About Deep Jungle Green
Deep Jungle Green (#004B49) is a color with RGB(0, 75, 73) and HSL(178.4°, 100%, 29.41%). It is commonly associated with Bold, Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #4B0002, which creates strong contrast. Its triadic palette includes #49004B and #4B4900. The name comes from Deep Jungle Green (English).
- HEX: #004B49
- RGB: 0, 75, 73
- HSL: 178.4°, 100%, 29.41%
- Mood: Bold, Luxury
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #4B0002
- Triadic colors: #49004B, #4B4900
- The name comes from Deep Jungle Green (English).
Live Components
Color Palettes
Deep Jungle Green #004B49 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
Deep Jungle Green #004B49 pairs with #4B0002 as its complementary color, and #49004B and #4B4900 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 concept of 'jungle green' as a color has been around for some time, often associated with military camouflage or natural environments. Adding 'deep' intensifies this, suggesting a darker, more saturated version. The precise hex triplet #004b49 is a modern digital specification, allowing for consistent reproduction across screens and print. It's a common color in digital art, web design, and product branding where a rich, earthy, or natural dark green is desired.
First Recorded Use
While the individual words 'deep', 'jungle', and 'green' have ancient origins, the specific compound color name 'Deep Jungle Green' likely emerged with the standardization of color naming conventions in commercial and digital contexts, particularly from the late 20th century onwards. Its hex code #004b49 points to a digital definition.
Cultural Associations
This color evokes strong associations with nature, wilderness, and the exotic. It can symbolize growth, renewal, and fertility, but also mystery, danger, and the unknown depths of an untamed environment. In design, it often conveys sophistication, earthiness, and a connection to the natural world. It's frequently used in eco-friendly branding, outdoor apparel, and luxury goods seeking a natural aesthetic.
Code Snippets
/* Background */
.element {
background-color: #004B49;
}
/* Text */
.element {
color: #004B49;
}
/* Border */
.element {
border: 1px solid #004B49;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#004B49,
#960004
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#004B49,
#960004
);
}
// SCSS variable
$deep-jungle-green: #004B49;
// With RGB channels (useful for rgba() usage)
$deep-jungle-green-r: 0;
$deep-jungle-green-g: 75;
$deep-jungle-green-b: 73;
// Usage
.element {
background-color: $deep-jungle-green;
color: rgba($deep-jungle-green-r, $deep-jungle-green-g, $deep-jungle-green-b, 0.8);
}