Outrageous Orange

HEX: #FF6E4A | Modern Palette

On White
2.77:1
FAIL
On Black
7.58:1
PASS

Color Specifications

HEX
#FF6E4A
RGB
255, 110, 74
HSL
11°, 100% ,64%
CMYK
0, 57, 71, 0

About Outrageous Orange

Outrageous Orange (#FF6E4A) is a color with RGB(255, 110, 74) and HSL(11.9°, 100%, 64.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 #4ADBFF, which creates strong contrast. Its triadic palette includes #4AFF6E and #6E4AFF. The name comes from Outrageous Orange (English).

  • HEX: #FF6E4A
  • RGB: 255, 110, 74
  • HSL: 11.9°, 100%, 64.5%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #4ADBFF
  • Triadic colors: #4AFF6E, #6E4AFF
  • The name comes from Outrageous 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 #FF6E4A from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #AAAA3F
Protanopia #88884C
Tritanopia #FF6A6A
Achromatopsia #9B9B9B

Frequently Asked Questions

Outrageous Orange (#FF6E4A) is a color with RGB(255, 110, 74) and HSL(11.9°, 100%, 64.5%).

#FF6E4A pairs strongly with #4ADBFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF6E4A is commonly associated with Energetic, Bold.

The name Outrageous Orange is linked to Outrageous Orange from English, meaning A vivid, striking, and perhaps unconventional shade of orange, implying a strong, attention-grabbing presence..

Name, History & Etymology

Origin Word Outrageous Orange
Meaning A vivid, striking, and perhaps unconventional shade of orange, implying a strong, attention-grabbing presence.
Language English
First Recorded Use Late 20th Century

History

The word 'outrageous' comes from Old French 'outrageux' (excessive, immoderate), from 'outrage' (excess, violation). 'Orange' comes from Old French 'pome d'orange' (apple of orange), ultimately from Sanskrit 'naranga'. The combination 'Outrageous Orange' is a modern descriptive phrase, not a historical color name like 'Prussian Blue'. It reflects a trend in color marketing to use adjectives that convey emotion, intensity, or a specific aesthetic rather than just a simple hue name. It suggests a departure from traditional or muted oranges.

First Recorded Use

While 'outrageous' and 'orange' have existed for centuries, the specific pairing 'Outrageous Orange' as a named color or descriptor likely emerged in the latter half of the 20th century, particularly with the rise of more descriptive and evocative color naming in fashion, cosmetics, and design. It's difficult to pinpoint an exact first use without specific historical product catalogs.

Cultural Associations

The term 'outrageous' often carries connotations of being bold, unconventional, shocking, or even rebellious. When applied to a color like orange, which is already associated with energy, warmth, and vibrancy, 'Outrageous Orange' amplifies these qualities, suggesting an orange that is particularly bright, intense, or perhaps even neon-like. It might be used in contexts where a strong visual statement is desired, such as avant-garde fashion, pop art, or playful branding. It evokes a sense of fun, daring, and breaking norms.

Similar Named Colors

Tomato #FF6347 ΔE 2.63
Portland Orange #FF5A36 ΔE 3.73
Burnt Sienna #E97451 ΔE 3.82
Coral #FF7F50 ΔE 4.47

Code Snippets

/* Background */
.element {
    background-color: #FF6E4A;
}

/* Text */
.element {
    color: #FF6E4A;
}

/* Border */
.element {
    border: 1px solid #FF6E4A;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF6E4A,
        #4ADBFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF6E4A,
        #4ADBFF
    );
}

// SCSS variable
$outrageous-orange: #FF6E4A;

// With RGB channels (useful for rgba() usage)
$outrageous-orange-r: 255;
$outrageous-orange-g: 110;
$outrageous-orange-b: 74;

// Usage
.element {
    background-color: $outrageous-orange;
    color: rgba($outrageous-orange-r, $outrageous-orange-g, $outrageous-orange-b, 0.8);
}