Sheen Green

HEX: #8FD400 | Modern Palette

On White
1.81:1
FAIL
On Black
11.59:1
PASS

Color Specifications

HEX
#8FD400
RGB
143, 212, 0
HSL
79°, 100% ,83%
CMYK
32.55, 0, 100, 16.86

About Sheen Green

Sheen Green (#8FD400) is a color with RGB(143, 212, 0) and HSL(79.53°, 100%, 83.14%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #4500D4, which creates strong contrast. Its triadic palette includes #008FD4 and #D4008F. The name comes from Sheen Green (English).

  • HEX: #8FD400
  • RGB: 143, 212, 0
  • HSL: 79.53°, 100%, 83.14%
  • Mood: Playful
  • Style: Neon
  • Use case: Text, Button, Background
  • Complementary color: #4500D4
  • Triadic colors: #008FD4, #D4008F
  • The name comes from Sheen 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 #8FD400 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon

Accessibility Simulation

Deuteranopia #C3C317
Protanopia #CECE00
Tritanopia #A2C8C8
Achromatopsia #C0C0C0

Frequently Asked Questions

Sheen Green (#8FD400) is a color with RGB(143, 212, 0) and HSL(79.53°, 100%, 83.14%).

#8FD400 pairs strongly with #4500D4 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8FD400 is suitable for Text, Button, Background and works well with Neon styles.

#8FD400 is commonly associated with Playful.

The name Sheen Green is linked to Sheen Green from English, meaning A bright, lustrous green; 'sheen' refers to a soft luster on a surface..

Name, History & Etymology

Origin Word Sheen Green
Meaning A bright, lustrous green; 'sheen' refers to a soft luster on a surface.
Language English
First Recorded Use Late 20th Century

History

The term 'sheen' has been used to describe a lustrous quality since Old English. 'Sheen Green' as a specific color name, particularly with a hexadecimal value like #8fd400, likely emerged with the advent of digital color systems and web design in the late 20th century. It describes a very bright, almost glowing yellow-green, reminiscent of new growth or highly reflective green surfaces. It's not a traditional pigment name but rather a descriptive term for a vibrant shade.

First Recorded Use

Circa 1990s (as a named color, particularly in digital and art contexts)

Cultural Associations

This color evokes feelings of freshness, vitality, and nature, often associated with spring, new leaves, or even technological interfaces due to its brightness. It can be seen as energetic and modern. In some contexts, very bright greens can be associated with 'slime' or 'alien' themes, but 'Sheen Green' generally leans towards the natural and vibrant.

Similar Named Colors

Yellow Green #9ACD32 ΔE 3.05
Vivid Lime Green #A6D608 ΔE 3.47
Android Green #A4C639 ΔE 5.73
Limerick #9DC209 ΔE 5.75

Code Snippets

/* Background */
.element {
    background-color: #8FD400;
}

/* Text */
.element {
    color: #8FD400;
}

/* Border */
.element {
    border: 1px solid #8FD400;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8FD400,
        #C5A9FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8FD400,
        #C5A9FF
    );
}

// SCSS variable
$sheen-green: #8FD400;

// With RGB channels (useful for rgba() usage)
$sheen-green-r: 143;
$sheen-green-g: 212;
$sheen-green-b: 0;

// Usage
.element {
    background-color: $sheen-green;
    color: rgba($sheen-green-r, $sheen-green-g, $sheen-green-b, 0.8);
}