Canary Yellow
HEX: #FFEF00 | Modern Palette
Color Specifications
#FFEF00
255, 239, 0
56°, 100% ,50%
0, 6, 100, 0
About Canary Yellow
Canary Yellow (#FFEF00) is a color with RGB(255, 239, 0) and HSL(56.2°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0010FF, which creates strong contrast. Its triadic palette includes Turquoise Blue (#00FFEF) and #EF00FF. The name comes from Canary Yellow (English).
- HEX: #FFEF00
- RGB: 255, 239, 0
- HSL: 56.2°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0010FF
- Triadic colors: Turquoise Blue (#00FFEF), #EF00FF
- The name comes from Canary 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 #FFEF00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color itself has existed naturally for millennia, but its specific naming as 'canary yellow' is relatively recent. Canaries, originally wild birds from the Macaronesian islands (Canary Islands, Azores, Madeira), were brought to Europe starting in the 15th century. Their bright yellow mutations became highly prized. As color science and fashion evolved, the need for precise color descriptions led to the adoption of terms like 'canary yellow' to denote a bright, pure yellow, often with a slight greenish tint compared to a pure primary yellow.
First Recorded Use
The term 'canary yellow' to describe a specific shade of yellow became popular in the late 19th century, coinciding with the increased popularity of canaries as pets and the development of more standardized color naming conventions.
Cultural Associations
Canary yellow is widely associated with brightness, cheerfulness, and energy. It can evoke feelings of happiness, optimism, and warmth. In fashion, it's often used for spring and summer collections. In art and design, it's a vibrant accent color. Due to its association with the bird, it can also subtly suggest lightness or song. However, like many bright yellows, overuse can sometimes be perceived as overwhelming or attention-seeking.
Code Snippets
/* Background */
.element {
background-color: #FFEF00;
}
/* Text */
.element {
color: #FFEF00;
}
/* Border */
.element {
border: 1px solid #FFEF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFEF00,
#0010FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFEF00,
#0010FF
);
}
// SCSS variable
$canary-yellow: #FFEF00;
// With RGB channels (useful for rgba() usage)
$canary-yellow-r: 255;
$canary-yellow-g: 239;
$canary-yellow-b: 0;
// Usage
.element {
background-color: $canary-yellow;
color: rgba($canary-yellow-r, $canary-yellow-g, $canary-yellow-b, 0.8);
}