Green (RYB)
HEX: #66B032 | Modern Palette
Color Specifications
#66B032
102, 176, 50
95°, 71% ,69%
42.05, 0, 71.59, 30.98
About Green (RYB)
Green (RYB) (#66B032) is a color with RGB(102, 176, 50) and HSL(95.24°, 71.59%, 69.02%). It is commonly associated with Playful moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #7C32B0, which creates strong contrast. Its triadic palette includes #3266B0 and #B03266. The name comes from *grōnnaz (Proto-Germanic).
- HEX: #66B032
- RGB: 102, 176, 50
- HSL: 95.24°, 71.59%, 69.02%
- Mood: Playful
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #7C32B0
- Triadic colors: #3266B0, #B03266
- The name comes from *grōnnaz (Proto-Germanic).
Live Components
Color Palettes
Green (RYB) #66B032 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
Green (RYB) #66B032 pairs with #7C32B0 as its complementary color, and #3266B0 and #B03266 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 word 'green' has deep roots in Germanic languages, stemming from a Proto-Germanic word *grōnnaz, which itself is related to words meaning 'to grow' or 'grass'. This connection highlights the ancient association of the color with vegetation and life. In Old English, the word was 'grēne'. It has maintained a relatively consistent form and meaning throughout the development of the English language. Historically, green dyes were often derived from plant materials, but these were notoriously difficult to fix and often faded quickly, making vibrant, lasting green a challenge to achieve in textiles for centuries.
First Recorded Use
Before 700 AD
Cultural Associations
Green holds a vast array of cultural meanings. It is widely associated with nature, growth, renewal, and life. In many cultures, it symbolizes fertility and spring. It is also the color of money in several countries (e.g., the US dollar), leading to associations with wealth and finance. In Islam, green is considered a sacred color, often associated with paradise. In Western cultures, green can also represent envy ('green with envy') or inexperience ('greenhorn'). It is a prominent color in environmental movements and sustainability. In Ireland, it is strongly linked to national identity and St. Patrick's Day.
Code Snippets
/* Background */
.element {
background-color: #66B032;
}
/* Text */
.element {
color: #66B032;
}
/* Border */
.element {
border: 1px solid #66B032;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#66B032,
#BA77E9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#66B032,
#BA77E9
);
}
// SCSS variable
$green-(ryb): #66B032;
// With RGB channels (useful for rgba() usage)
$green-(ryb)-r: 102;
$green-(ryb)-g: 176;
$green-(ryb)-b: 50;
// Usage
.element {
background-color: $green-(ryb);
color: rgba($green-(ryb)-r, $green-(ryb)-g, $green-(ryb)-b, 0.8);
}