Green
HEX: #00FF00 | Modern Palette
Color Specifications
#00FF00
0, 255, 0
120°, 100% ,50%
100, 0, 100, 0
About Green
Green (#00FF00) is a color with RGB(0, 255, 0) and HSL(120°, 100%, 50%). 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 Magenta (#FF00FF), which creates strong contrast. Its triadic palette includes Blue (#0000FF) and Red (#FF0000). The name comes from *grōnijaz (Proto-Germanic).
- HEX: #00FF00
- RGB: 0, 255, 0
- HSL: 120°, 100%, 50%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: Magenta (#FF00FF)
- Triadic colors: Blue (#0000FF), Red (#FF0000)
- The name comes from *grōnijaz (Proto-Germanic).
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 #00FF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'green' has deep roots in Indo-European languages, stemming from a root meaning 'to grow' or 'to sprout'. In Old English, it was 'grēne', directly related to 'growan' (to grow). This connection to growth and vegetation has been central to its meaning throughout history. It has consistently been used to describe the color of plants, leaves, and unripened fruit. Over time, its semantic range expanded to include concepts like youth, inexperience, envy, and environmentalism.
First Recorded Use
Before 900 AD
Cultural Associations
Green is widely associated with nature, spring, fertility, and rebirth across many cultures. In Western cultures, green can symbolize luck (e.g., four-leaf clover), money (U.S. dollar bills), and envy ('green with envy'). It is the sacred color of Islam, representing paradise. In Ireland, green is strongly linked to the national identity and St. Patrick's Day. In traffic lights, green signifies 'go' or permission. The modern environmental movement has adopted green as its primary color, symbolizing sustainability and ecological awareness.
Code Snippets
/* Background */
.element {
background-color: #00FF00;
}
/* Text */
.element {
color: #00FF00;
}
/* Border */
.element {
border: 1px solid #00FF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00FF00,
#FF00FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00FF00,
#FF00FF
);
}
// SCSS variable
$green: #00FF00;
// With RGB channels (useful for rgba() usage)
$green-r: 0;
$green-g: 255;
$green-b: 0;
// Usage
.element {
background-color: $green;
color: rgba($green-r, $green-g, $green-b, 0.8);
}