Outrageous Orange
HEX: #FF6E4A | Modern Palette
Color Specifications
#FF6E4A
255, 110, 74
11°, 100% ,64%
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
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 #FF6E4A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}