Screamin Green

HEX: #76FF7A | Modern Palette

On White
1.28:1
FAIL
On Black
16.36:1
PASS

Color Specifications

HEX
#76FF7A
RGB
118, 255, 122
HSL
121°, 53% ,100%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Style
Cool

Accessibility Simulation

Deuteranopia #E2E27F
Protanopia #F5F579
Tritanopia #92F3F3
Achromatopsia #E3E3E3

Frequently Asked Questions

Screamin Green (#76FF7A) is a color with RGB(118, 255, 122) and HSL(121.75°, 53.73%, 100%).

#76FF7A pairs strongly with #FF76FB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#76FF7A is suitable for Text, Button, Background and works well with Cool styles.

The name Screamin Green is linked to Screamin' Green from English, meaning An extremely bright and vivid shade of green, often implying an almost neon or fluorescent quality..

Name, History & Etymology

Origin Word Screamin' Green
Meaning An extremely bright and vivid shade of green, often implying an almost neon or fluorescent quality.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Mint Green #98FF98 ΔE 4.29
Spring Green #00FF7F ΔE 4.73
Pale Green #98FB98 ΔE 4.75
Light Green #90EE90 ΔE 5.89

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);
}