Yellow Orange
HEX: #FFAE42 | Modern Palette
Color Specifications
#FFAE42
255, 174, 66
34°, 100% ,62%
0, 32, 74, 0
About Yellow Orange
Yellow Orange (#FFAE42) is a color with RGB(255, 174, 66) and HSL(34.3°, 100%, 62.9%). 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 #4293FF, which creates strong contrast. Its triadic palette includes #42FFAE and #AE42FF. The name comes from Yellow Orange (English).
- HEX: #FFAE42
- RGB: 255, 174, 66
- HSL: 34.3°, 100%, 62.9%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #4293FF
- Triadic colors: #42FFAE, #AE42FF
- The name comes from Yellow Orange (English).
Live Components
Color Palettes
Yellow Orange #FFAE42 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
Yellow Orange #FFAE42 pairs with #4293FF as its complementary color, and #42FFAE and #AE42FF 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 individual colors yellow and orange have rich histories. Yellow is one of the first colors used in art (cave paintings). Orange, as a distinct color name, only became common in English after the fruit 'orange' was introduced from Asia in the late Middle Ages. Before that, it was often described as 'red-yellow' or 'saffron.' The combination 'yellow-orange' or 'orange-yellow' naturally arose as people sought to describe the spectrum of colors between these two primaries/secondaries. It's a common descriptor in art education, paint mixing, and digital color systems to specify a hue that leans more towards yellow than a pure orange, but still contains significant orange characteristics.
First Recorded Use
While 'yellow' and 'orange' have ancient origins, the specific compound 'yellow-orange' (or 'yellow orange') as a distinct color descriptor likely emerged as color terminology became more precise, particularly in art, dyeing, and scientific observation. Direct documented first use of the exact phrase 'yellow orange' for the #ffae42 type of color is difficult to pinpoint to a single instance, but the concept of intermediate colors was certainly present. The term 'orange-yellow' also exists and is often used interchangeably or for slightly different emphasis.
Cultural Associations
Yellow-orange hues are often associated with warmth, autumn, sunsets, citrus fruits, and fire. They can evoke feelings of happiness, energy, and enthusiasm. In many cultures, yellow is associated with sunshine and joy, while orange can represent creativity and success. The combination often carries these positive connotations. It's a very common color in natural settings and therefore often perceived as organic and inviting.
Code Snippets
/* Background */
.element {
background-color: #FFAE42;
}
/* Text */
.element {
color: #FFAE42;
}
/* Border */
.element {
border: 1px solid #FFAE42;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFAE42,
#4293FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFAE42,
#4293FF
);
}
// SCSS variable
$yellow-orange: #FFAE42;
// With RGB channels (useful for rgba() usage)
$yellow-orange-r: 255;
$yellow-orange-g: 174;
$yellow-orange-b: 66;
// Usage
.element {
background-color: $yellow-orange;
color: rgba($yellow-orange-r, $yellow-orange-g, $yellow-orange-b, 0.8);
}