Yellow Orange

HEX: #FFAE42 | Modern Palette

On White
1.84:1
FAIL
On Black
11.39:1
PASS

Color Specifications

HEX
#FFAE42
RGB
255, 174, 66
HSL
34°, 100% ,62%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #FFAE42 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #CACA3A
Protanopia #B9B944
Tritanopia #FFA5A5
Achromatopsia #BFBFBF

Frequently Asked Questions

Yellow Orange (#FFAE42) is a color with RGB(255, 174, 66) and HSL(34.3°, 100%, 62.9%).

#FFAE42 pairs strongly with #4293FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FFAE42 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FFAE42 is commonly associated with Energetic, Bold.

The name Yellow Orange is linked to Yellow Orange from English, meaning A color that is an intermediate hue between yellow and orange..

Name, History & Etymology

Origin Word Yellow Orange
Meaning A color that is an intermediate hue between yellow and orange.
Language English
First Recorded Use Late 17th - Early 18th Century (as a compound color description)

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.

Similar Named Colors

Pastel Orange #FFB347 ΔE 1.59
Dark Tangerine #FFA812 ΔE 3.37
Orange #FFA500 ΔE 3.84
Chrome Yellow #FFA700 ΔE 3.86

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);
}