Shamrock Green
HEX: #009E60 | Modern Palette
Color Specifications
#009E60
0, 158, 96
156°, 100% ,61%
100, 0, 39.24, 38.04
About Shamrock Green
Shamrock Green (#009E60) is a color with RGB(0, 158, 96) and HSL(156.46°, 100%, 61.96%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #9E003E, which creates strong contrast. Its triadic palette includes #60009E and #9E6000. The name comes from Shamrock Green (English).
- HEX: #009E60
- RGB: 0, 158, 96
- HSL: 156.46°, 100%, 61.96%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #9E003E
- Triadic colors: #60009E, #9E6000
- The name comes from Shamrock 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 #009E60 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Green has long been associated with Ireland, often referred to as the 'Emerald Isle.' This association deepened during the 17th and 18th centuries, particularly with the rise of Irish nationalism and the use of green as a symbol of rebellion against British rule. The shamrock, a three-leaf clover, became a potent symbol of Ireland, famously linked to St. Patrick who is said to have used it to explain the Holy Trinity. 'Shamrock Green' specifically refers to the vibrant, medium green color often depicted for the plant itself. Its use became widespread in various contexts, from flags and political movements to everyday items and celebrations, especially St. Patrick's Day.
First Recorded Use
The specific color name 'Shamrock Green' likely gained prominence in the 19th century as Irish nationalism and the celebration of St. Patrick's Day became more widespread, solidifying the shamrock as a national symbol.
Cultural Associations
Shamrock Green is deeply embedded in Irish culture and identity. It is the quintessential color for St. Patrick's Day celebrations worldwide, appearing on clothing, decorations, and various merchandise. It symbolizes Ireland, Irish heritage, good luck, and spring. Beyond St. Patrick's Day, it is often used in branding for Irish products, sports teams, and tourism. It evokes feelings of lush landscapes, folklore, and national pride.
Code Snippets
/* Background */
.element {
background-color: #009E60;
}
/* Text */
.element {
color: #009E60;
}
/* Border */
.element {
border: 1px solid #009E60;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#009E60,
#FF3D89
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#009E60,
#FF3D89
);
}
// SCSS variable
$shamrock-green: #009E60;
// With RGB channels (useful for rgba() usage)
$shamrock-green-r: 0;
$shamrock-green-g: 158;
$shamrock-green-b: 96;
// Usage
.element {
background-color: $shamrock-green;
color: rgba($shamrock-green-r, $shamrock-green-g, $shamrock-green-b, 0.8);
}