Unmellow Yellow
HEX: #FFFF66 | Modern Palette
Color Specifications
#FFFF66
255, 255, 102
60°, 100% ,70%
0, 0, 60, 0
About Unmellow Yellow
Unmellow Yellow (#FFFF66) is a color with RGB(255, 255, 102) and HSL(60°, 100%, 70%). 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 Very Light Blue (#6666FF), which creates strong contrast. Its triadic palette includes #66FFFF and #FF66FF. The name comes from Unmellow Yellow (English).
- HEX: #FFFF66
- RGB: 255, 255, 102
- HSL: 60°, 100%, 70%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: Very Light Blue (#6666FF)
- Triadic colors: #66FFFF, #FF66FF
- The name comes from Unmellow 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 #FFFF66 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Unmellow Yellow' was popularized by Crayola when it was introduced as a new crayon color in 1990. Crayola often uses creative and evocative names for its colors, and this one perfectly captures a bright, almost neon-like yellow that isn't 'mellow' or soft. It replaced 'Maize' in the standard 64-count box. The color itself, #ffff66, is a very pure and bright yellow, leaning towards a lemon or canary yellow, but with a slight intensity that justifies the 'unmellow' descriptor.
First Recorded Use
The exact first use is difficult to pinpoint, but the phrase gained significant traction and recognition with its inclusion as a Crayola crayon color in 1990. Prior to that, it might have been used informally in descriptive language.
Cultural Associations
As a Crayola color, 'Unmellow Yellow' holds a nostalgic place for many who grew up in the 1990s and beyond. Crayola colors often become part of a shared cultural lexicon, and this particular name is memorable for its whimsical and slightly contradictory nature. It evokes a sense of youthful energy and brightness, often associated with sunshine, happiness, and creativity. It's a color that stands out and demands attention.
Code Snippets
/* Background */
.element {
background-color: #FFFF66;
}
/* Text */
.element {
color: #FFFF66;
}
/* Border */
.element {
border: 1px solid #FFFF66;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFFF66,
#6666FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFFF66,
#6666FF
);
}
// SCSS variable
$unmellow-yellow: #FFFF66;
// With RGB channels (useful for rgba() usage)
$unmellow-yellow-r: 255;
$unmellow-yellow-g: 255;
$unmellow-yellow-b: 102;
// Usage
.element {
background-color: $unmellow-yellow;
color: rgba($unmellow-yellow-r, $unmellow-yellow-g, $unmellow-yellow-b, 0.8);
}