Lincoln Green
HEX: #195905 | Modern Palette
Color Specifications
#195905
25, 89, 5
105°, 94% ,34%
71.91, 0, 94.38, 65.1
About Lincoln Green
Lincoln Green (#195905) is a color with RGB(25, 89, 5) and HSL(105.71°, 94.38%, 34.9%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #450559, which creates strong contrast. Its triadic palette includes #051959 and #590519. The name comes from Lincoln Green (English).
- HEX: #195905
- RGB: 25, 89, 5
- HSL: 105.71°, 94.38%, 34.9%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #450559
- Triadic colors: #051959, #590519
- The name comes from Lincoln Green (English).
Live Components
Color Palettes
Lincoln Green #195905 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
Lincoln Green #195905 pairs with #450559 as its complementary color, and #051959 and #590519 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 term 'Lincoln Green' refers to a particular shade of green dye and cloth that was famously produced in Lincoln, England, during the medieval period. Lincoln was a significant center for wool and cloth production. The green color was achieved using woad (for blue) and weld or dyer's broom (for yellow) to create a vibrant and durable green. It gained widespread recognition, particularly through its association with the legendary figure of Robin Hood and his Merry Men, who are often depicted wearing Lincoln Green tunics. This association, though possibly anachronistic in its precise historical detail for Robin Hood, cemented the color's place in English folklore and literature as a symbol of the forest, outlaws, and a certain rustic nobility. The quality and distinctiveness of Lincoln Green made it a prized commodity.
First Recorded Use
Late 14th - Early 15th Century
Cultural Associations
Lincoln Green is most famously and enduringly associated with Robin Hood and his Merry Men. This connection has made the color a symbol of the English forest, rebellion against injustice, and a romanticized view of medieval outlaw life. It evokes images of Sherwood Forest, archery, and a sense of natural freedom. Beyond Robin Hood, it represents a historical period of English textile excellence and the importance of regional industries. The color itself is often described as a deep, rich, somewhat muted green, reminiscent of forest foliage.
Code Snippets
/* Background */
.element {
background-color: #195905;
}
/* Text */
.element {
color: #195905;
}
/* Border */
.element {
border: 1px solid #195905;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#195905,
#8505AD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#195905,
#8505AD
);
}
// SCSS variable
$lincoln-green: #195905;
// With RGB channels (useful for rgba() usage)
$lincoln-green-r: 25;
$lincoln-green-g: 89;
$lincoln-green-b: 5;
// Usage
.element {
background-color: $lincoln-green;
color: rgba($lincoln-green-r, $lincoln-green-g, $lincoln-green-b, 0.8);
}