Green-cyan
HEX: #009966 | Modern Palette
Color Specifications
#009966
0, 153, 102
160°, 100% ,60%
100, 0, 33.33, 40
About Green-cyan
Green-cyan (#009966) is a color with RGB(0, 153, 102) and HSL(160°, 100%, 60%). 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 #990033, which creates strong contrast. Its triadic palette includes #660099 and Gamboge Orange (brown) (#996600). The name comes from Green-cyan (English).
- HEX: #009966
- RGB: 0, 153, 102
- HSL: 160°, 100%, 60%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #990033
- Triadic colors: #660099, Gamboge Orange (brown) (#996600)
- The name comes from Green-cyan (English).
Live Components
Color Palettes
Green-cyan #009966 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-cyan #009966 pairs with #990033 as its complementary color, and #660099 and Gamboge Orange (brown) (#996600) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Frequently Asked Questions
Name, History & Etymology
History
The concept of colors between primary and secondary hues has always existed in art and natural observation. However, the precise naming 'green-cyan' is a modern construct, largely driven by digital color spaces (like RGB or hexadecimal codes). In these systems, colors are often defined by their components, and 'green-cyan' clearly indicates a mix leaning towards both. It's not a traditional color name like 'teal' or 'aquamarine' (which might fall into this range) but rather a descriptive compound term.
First Recorded Use
The specific compound term 'green-cyan' as a common descriptor for a color, especially in digital contexts, likely gained prominence with the widespread use of RGB color models and web colors. While the concept of such a hue existed, the explicit naming convention became more common as precise color specification became necessary. It's difficult to pinpoint an exact 'first use' date, but its rise correlates with digital color systems.
Cultural Associations
While not a culturally significant color name in the way 'royal blue' or 'hunter green' might be, 'green-cyan' is understood universally in digital design, web development, and graphic arts. It's a technical descriptor rather than an evocative one. Colors in this range are often associated with water, tropical themes, technology, and freshness.
Code Snippets
/* Background */
.element {
background-color: #009966;
}
/* Text */
.element {
color: #009966;
}
/* Border */
.element {
border: 1px solid #009966;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#009966,
#FF3377
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#009966,
#FF3377
);
}
// SCSS variable
$green-cyan: #009966;
// With RGB channels (useful for rgba() usage)
$green-cyan-r: 0;
$green-cyan-g: 153;
$green-cyan-b: 102;
// Usage
.element {
background-color: $green-cyan;
color: rgba($green-cyan-r, $green-cyan-g, $green-cyan-b, 0.8);
}