Screamin Green
HEX: #76FF7A | Modern Palette
Color Specifications
#76FF7A
118, 255, 122
121°, 53% ,100%
53.73, 0, 52.16, 0
About Screamin Green
Screamin Green (#76FF7A) is a color with RGB(118, 255, 122) and HSL(121.75°, 53.73%, 100%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FF76FB, which creates strong contrast. Its triadic palette includes #7A76FF and #FF7A76. The name comes from Screamin' Green (English).
- HEX: #76FF7A
- RGB: 118, 255, 122
- HSL: 121.75°, 53.73%, 100%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #FF76FB
- Triadic colors: #7A76FF, #FF7A76
- The name comes from Screamin' Green (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 #76FF7A from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E2E27F
#F5F579
#92F3F3
#E3E3E3
Frequently Asked Questions
Name, History & Etymology
History
The term 'screamin' green' is an informal, descriptive phrase rather than a formally defined color name. It belongs to a category of hyperbolic color descriptions (e.g., 'blazing red,' 'electric blue') that aim to convey an intensity beyond standard color names. Its popularity grew with the rise of synthetic dyes and pigments that could produce such vivid hues, making them accessible in fashion, toys, and consumer products. The specific hex code #76ff7a is a modern digital representation of such a color.
First Recorded Use
While difficult to pinpoint an exact 'first use' date, the phrase 'screamin' green' likely emerged in popular culture and marketing during the 1980s or 1990s, a period known for its embrace of vibrant and often artificial colors. The use of 'screamin'' as an intensifier for colors became more common around this time.
Cultural Associations
This color evokes a sense of energy, artificiality, and often playfulness. It's frequently associated with: - **Neon aesthetics:** Particularly reminiscent of 1980s and 90s fashion, rave culture, and arcade games. - **Youth culture:** Often used in products targeting younger demographics. - **High visibility/Alertness:** Due to its brightness, it can be used for attention-grabbing purposes. - **Sci-fi/Fantasy:** Sometimes used to depict alien landscapes, futuristic technology, or magical effects. - **Environmentalism (ironically):** While 'green' is associated with nature, 'screamin' green' often feels more synthetic than organic, though it can be used in stylized environmental branding.
Code Snippets
/* Background */
.element {
background-color: #76FF7A;
}
/* Text */
.element {
color: #76FF7A;
}
/* Border */
.element {
border: 1px solid #76FF7A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#76FF7A,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#76FF7A,
#FFFFFF
);
}
// SCSS variable
$screamin-green: #76FF7A;
// With RGB channels (useful for rgba() usage)
$screamin-green-r: 118;
$screamin-green-g: 255;
$screamin-green-b: 122;
// Usage
.element {
background-color: $screamin-green;
color: rgba($screamin-green-r, $screamin-green-g, $screamin-green-b, 0.8);
}