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
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 #009966 from deepest shade to lightest tint.
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);
}