Fern Green
HEX: #4F7942 | Modern Palette
Color Specifications
#4F7942
79, 121, 66
105°, 45% ,47%
34.71, 0, 45.45, 52.55
About Fern Green
Fern Green (#4F7942) is a color with RGB(79, 121, 66) and HSL(105.82°, 45.45%, 47.45%). It is commonly associated with Earthy moods. In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #6C4279, which creates strong contrast. Its triadic palette includes #424F79 and #79424F. The name comes from Fern Green (English).
- HEX: #4F7942
- RGB: 79, 121, 66
- HSL: 105.82°, 45.45%, 47.45%
- Mood: Earthy
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #6C4279
- Triadic colors: #424F79, #79424F
- The name comes from Fern 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 #4F7942 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'green' is ancient, but specific named shades like 'Fern Green' are a more modern development. As botanical illustrations became more precise and color pigments more varied and stable, the need and ability to distinguish specific shades of green increased. 'Fern Green' evokes the lush, often slightly muted or earthy green found in many fern species, particularly those in shaded, damp environments. It's a naturalistic green, distinct from brighter lime greens or deeper forest greens.
First Recorded Use
The specific term 'Fern Green' as a named color likely emerged as color standardization and naming became more common in art, fashion, and industry. While green colors inspired by nature have always existed, the precise naming convention points to this period.
Cultural Associations
Fern Green is often associated with nature, tranquility, growth, and the outdoors. It can evoke feelings of peace and freshness. In design, it's frequently used to create organic, earthy, or sophisticated natural palettes. It's a popular choice for interiors, fashion, and branding that aims for an eco-friendly or natural aesthetic. It's less vibrant than some greens, giving it a more mature and grounding feel.
Code Snippets
/* Background */
.element {
background-color: #4F7942;
}
/* Text */
.element {
color: #4F7942;
}
/* Border */
.element {
border: 1px solid #4F7942;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4F7942,
#9642B0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4F7942,
#9642B0
);
}
// SCSS variable
$fern-green: #4F7942;
// With RGB channels (useful for rgba() usage)
$fern-green-r: 79;
$fern-green-g: 121;
$fern-green-b: 66;
// Usage
.element {
background-color: $fern-green;
color: rgba($fern-green-r, $fern-green-g, $fern-green-b, 0.8);
}