Electric Yellow
HEX: #FFFF33 | Modern Palette
Color Specifications
#FFFF33
255, 255, 51
60°, 80% ,100%
0, 0, 80, 0
About Electric Yellow
Electric Yellow (#FFFF33) is a color with RGB(255, 255, 51) and HSL(60°, 80%, 100%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3333FF, which creates strong contrast. Its triadic palette includes #33FFFF and #FF33FF. The name comes from Electric Yellow (English).
- HEX: #FFFF33
- RGB: 255, 255, 51
- HSL: 60°, 80%, 100%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #3333FF
- Triadic colors: #33FFFF, #FF33FF
- The name comes from Electric Yellow (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 #FFFF33 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#FFFF33
#FFFF33
#FFF1F1
#F7F7F7
Frequently Asked Questions
Name, History & Etymology
History
The term 'electric' as a color modifier became common with the advent of synthetic dyes and pigments that could produce colors far more vibrant than natural ones. It was particularly prevalent in the 1980s and 1990s with the rise of neon colors in fashion and rave culture. 'Electric Yellow' (or similar terms like 'neon yellow') describes a color that is almost fluorescent, reminiscent of the glow of an electric light or a high-visibility safety color. The hex code #ffff33 is a very pure, bright yellow, bordering on the 'electric' intensity.
First Recorded Use
The exact first use is difficult to pinpoint, but the 'electric' prefix for colors gained popularity in the latter half of the 20th century to describe exceptionally bright or neon shades, particularly in fashion, art, and design. 'Electric yellow' specifically likely emerged as a descriptor for very intense, almost glowing yellows.
Cultural Associations
Electric yellow is often associated with high energy, youthfulness, modernity, and sometimes artificiality. It's frequently used in sports apparel, safety gear (due to its high visibility), and contemporary design to create a striking and attention-grabbing effect. In some contexts, it can evoke a sense of urgency or excitement. It's a color that stands out and is rarely subtle.
Code Snippets
/* Background */
.element {
background-color: #FFFF33;
}
/* Text */
.element {
color: #FFFF33;
}
/* Border */
.element {
border: 1px solid #FFFF33;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFFF33,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFFF33,
#FFFFFF
);
}
// SCSS variable
$electric-yellow: #FFFF33;
// With RGB channels (useful for rgba() usage)
$electric-yellow-r: 255;
$electric-yellow-g: 255;
$electric-yellow-b: 51;
// Usage
.element {
background-color: $electric-yellow;
color: rgba($electric-yellow-r, $electric-yellow-g, $electric-yellow-b, 0.8);
}