Medium Jungle Green

HEX: #1C352D | Modern Palette

On White
13.15:1
PASS
On Black
1.60:1
FAIL

Color Specifications

HEX
#1C352D
RGB
28, 53, 45
HSL
160°, 47% ,20%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold Luxury
Style
Cool

Accessibility Simulation

Deuteranopia #2F2F2D
Protanopia #33332D
Tritanopia #1E3434
Achromatopsia #303030

Frequently Asked Questions

Medium Jungle Green (#1C352D) is a color with RGB(28, 53, 45) and HSL(160.8°, 47.17%, 20.78%).

#1C352D pairs strongly with #351C24 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#1C352D is suitable for Text, Button, Background and works well with Cool styles.

#1C352D is commonly associated with Bold, Luxury.

The name Medium Jungle Green is linked to Medium Jungle Green from English, meaning A shade of green that is medium in intensity and evokes the color of dense jungle foliage..

Name, History & Etymology

Origin Word Medium Jungle Green
Meaning A shade of green that is medium in intensity and evokes the color of dense jungle foliage.
Language English
First Recorded Use 20th Century

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.

Similar Named Colors

Black Leather Jacket #253529 ΔE 3.58
Phthalo Green #123524 ΔE 5.07
MSU Green #18453B ΔE 6.30
Dark Green #013220 ΔE 6.95

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);
}