GO Green
HEX: #00AB66 | Modern Palette
Color Specifications
#00AB66
0, 171, 102
155°, 100% ,67%
100, 0, 40.35, 32.94
About GO Green
GO Green (#00AB66) is a color with RGB(0, 171, 102) and HSL(155.79°, 100%, 67.06%). 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 #AB0045, which creates strong contrast. Its triadic palette includes #6600AB and #AB6600. The name comes from Go Green (English).
- HEX: #00AB66
- RGB: 0, 171, 102
- HSL: 155.79°, 100%, 67.06%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #AB0045
- Triadic colors: #6600AB, #AB6600
- The name comes from Go Green (English).
Live Components
Color Palettes
GO Green #00AB66 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
GO Green #00AB66 pairs with #AB0045 as its complementary color, and #6600AB and #AB6600 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 'going green' emerged from the broader environmental movement that began in the mid-20th century. As scientific understanding of climate change and ecological damage increased, there was a growing public and political push for sustainable practices. The phrase 'go green' became a concise and accessible slogan to encourage individuals, businesses, and governments to adopt eco-friendly behaviors, such as recycling, conserving energy, using renewable resources, and reducing pollution. Its popularity surged with the rise of Earth Day and other environmental initiatives.
First Recorded Use
The exact first use is difficult to pinpoint, but the phrase gained significant traction in the 1980s and 1990s as environmental awareness grew. Early uses were often in environmental campaigns and educational materials.
Cultural Associations
The phrase 'Go Green' is widely recognized globally, particularly in Western cultures and countries with strong environmental movements. It is often associated with a sense of personal responsibility and collective action towards sustainability. It has permeated advertising, product labeling, and public discourse, becoming a shorthand for environmentally conscious choices. The color green itself is universally associated with nature and environmentalism, reinforcing the phrase's meaning.
Code Snippets
/* Background */
.element {
background-color: #00AB66;
}
/* Text */
.element {
color: #00AB66;
}
/* Border */
.element {
border: 1px solid #00AB66;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00AB66,
#FF579B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00AB66,
#FF579B
);
}
// SCSS variable
$go-green: #00AB66;
// With RGB channels (useful for rgba() usage)
$go-green-r: 0;
$go-green-g: 171;
$go-green-b: 102;
// Usage
.element {
background-color: $go-green;
color: rgba($go-green-r, $go-green-g, $go-green-b, 0.8);
}