Hunter Green
HEX: #355E3B | Modern Palette
Color Specifications
#355E3B
53, 94, 59
128°, 43% ,36%
43.62, 0, 37.23, 63.14
About Hunter Green
Hunter Green (#355E3B) is a color with RGB(53, 94, 59) and HSL(128.78°, 43.62%, 36.86%). It is commonly associated with Calm, Earthy moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #5E3558, which creates strong contrast. Its triadic palette includes #3B355E and #5E3B35. The name comes from Hunter Green (English).
- HEX: #355E3B
- RGB: 53, 94, 59
- HSL: 128.78°, 43.62%, 36.86%
- Mood: Calm, Earthy
- Style: Cool
- Use case: Text, Logo, Print
- Complementary color: #5E3558
- Triadic colors: #3B355E, #5E3B35
- The name comes from Hunter 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 #355E3B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Hunter Green' derives its name from its traditional use in hunting attire. Before the advent of modern camouflage, dark green was a practical choice for hunters in forested environments, providing a degree of concealment. This association led to the formal naming of the color. It became particularly popular in fashion and design during the 20th century, often evoking a sense of nature, tradition, and sophistication.
First Recorded Use
The term 'Hunter Green' as a specific color name gained popularity in the late 19th century, though the color itself existed long before.
Cultural Associations
Hunter Green is widely recognized and used in various cultural contexts. It is often associated with nature, forests, and the outdoors. In fashion, it can convey elegance, classic style, or a rustic aesthetic. It's also frequently seen in sports team uniforms, academic regalia, and corporate branding, often symbolizing growth, stability, or tradition. It has a strong presence in holiday decorations, particularly during Christmas.
Code Snippets
/* Background */
.element {
background-color: #355E3B;
}
/* Text */
.element {
color: #355E3B;
}
/* Border */
.element {
border: 1px solid #355E3B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#355E3B,
#87357B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#355E3B,
#87357B
);
}
// SCSS variable
$hunter-green: #355E3B;
// With RGB channels (useful for rgba() usage)
$hunter-green-r: 53;
$hunter-green-g: 94;
$hunter-green-b: 59;
// Usage
.element {
background-color: $hunter-green;
color: rgba($hunter-green-r, $hunter-green-g, $hunter-green-b, 0.8);
}