Laser Lemon
HEX: #FEFE22 | Modern Palette
Color Specifications
#FEFE22
254, 254, 34
60°, 99% ,56%
0, 0, 87, 0
About Laser Lemon
Laser Lemon (#FEFE22) is a color with RGB(254, 254, 34) and HSL(60°, 99.1%, 56.5%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #2222FE, which creates strong contrast. Its triadic palette includes #22FEFE and #FE22FE. The name comes from Laser Lemon (English).
- HEX: #FEFE22
- RGB: 254, 254, 34
- HSL: 60°, 99.1%, 56.5%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #2222FE
- Triadic colors: #22FEFE, #FE22FE
- The name comes from Laser Lemon (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 #FEFE22 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Laser Lemon' was introduced by Crayola in 1990 as part of their crayon color palette. It was one of the new colors added to replace some of the older, less popular shades. The name combines 'laser,' implying brightness and intensity, with 'lemon,' a common descriptor for yellow hues, to create a vivid and memorable name for a very bright yellow.
First Recorded Use
1990
Cultural Associations
As a Crayola crayon color, Laser Lemon holds a nostalgic place for many who grew up in the 1990s and beyond. It's often associated with childhood creativity and art. Its brightness makes it popular for depicting sunshine, cartoon elements, and vibrant designs. It's a playful and energetic color.
Code Snippets
/* Background */
.element {
background-color: #FEFE22;
}
/* Text */
.element {
color: #FEFE22;
}
/* Border */
.element {
border: 1px solid #FEFE22;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FEFE22,
#2222FE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FEFE22,
#2222FE
);
}
// SCSS variable
$laser-lemon: #FEFE22;
// With RGB channels (useful for rgba() usage)
$laser-lemon-r: 254;
$laser-lemon-g: 254;
$laser-lemon-b: 34;
// Usage
.element {
background-color: $laser-lemon;
color: rgba($laser-lemon-r, $laser-lemon-g, $laser-lemon-b, 0.8);
}