Forest Green
HEX: #228B22 | Modern Palette
Color Specifications
#228B22
34, 139, 34
120°, 75% ,54%
75.54, 0, 75.54, 45.49
About Forest Green
Forest Green (#228B22) is a color with RGB(34, 139, 34) and HSL(120°, 75.54%, 54.51%). In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #8B228B, which creates strong contrast. Its triadic palette includes #22228B and #8B2222. The name comes from Forest Green (English).
- HEX: #228B22
- RGB: 34, 139, 34
- HSL: 120°, 75.54%, 54.51%
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #8B228B
- Triadic colors: #22228B, #8B2222
- The name comes from Forest Green (English).
Live Components
Color Palettes
Forest Green #228B22 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
Forest Green #228B22 pairs with #8B228B as its complementary color, and #22228B and #8B2222 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 'forest green' as a distinct shade of green is rooted in human observation of nature. Forests, especially temperate and boreal ones, are characterized by a rich, deep green hue from the chlorophyll in their trees and plants. As color naming became more sophisticated, particularly in art, fashion, and manufacturing, specific shades were given evocative names. 'Forest Green' emerged as a popular descriptor for a dark, natural green, distinct from lighter 'lime green' or bluer 'teal'. Its use has been consistent in various fields, including military uniforms (camouflage), fashion, interior design, and sports team colors.
First Recorded Use
The term 'Forest Green' as a specific color name gained popularity in the late 19th century, particularly with the advent of standardized color charts and commercial dyes. While green has always been associated with forests, the specific compound name for a color shade became more common then.
Cultural Associations
Forest Green often symbolizes nature, growth, renewal, and tranquility. It is frequently associated with environmentalism and sustainability movements. In some cultures, green can also represent luck, fertility, or wealth. It's a common color for outdoor brands, national parks, and organizations focused on conservation. In fashion, it's considered a classic, versatile color that can be both sophisticated and earthy. It's also a popular color for Christmas decorations, representing evergreen trees.
Code Snippets
/* Background */
.element {
background-color: #228B22;
}
/* Text */
.element {
color: #228B22;
}
/* Border */
.element {
border: 1px solid #228B22;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#228B22,
#E333E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#228B22,
#E333E3
);
}
// SCSS variable
$forest-green: #228B22;
// With RGB channels (useful for rgba() usage)
$forest-green-r: 34;
$forest-green-g: 139;
$forest-green-b: 34;
// Usage
.element {
background-color: $forest-green;
color: rgba($forest-green-r, $forest-green-g, $forest-green-b, 0.8);
}