Sheen Green
HEX: #8FD400 | Modern Palette
Color Specifications
#8FD400
143, 212, 0
79°, 100% ,83%
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
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 #8FD400 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C3C317
#CECE00
#A2C8C8
#C0C0C0
Frequently Asked Questions
Name, History & Etymology
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.
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);
}