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
Laser Lemon #FEFE22 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Laser Lemon #FEFE22 pairs with #2222FE as its complementary color, and #22FEFE and #FE22FE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}