Red Orange
HEX: #FF5349 | Modern Palette
Color Specifications
#FF5349
255, 83, 73
3°, 100% ,64%
0, 67, 71, 0
About Red Orange
Red Orange (#FF5349) is a color with RGB(255, 83, 73) and HSL(3.3°, 100%, 64.3%). 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 #49F5FF, which creates strong contrast. Its triadic palette includes #49FF53 and #5349FF. The name comes from Red Orange (English).
- HEX: #FF5349
- RGB: 255, 83, 73
- HSL: 3.3°, 100%, 64.3%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #49F5FF
- Triadic colors: #49FF53, #5349FF
- The name comes from Red Orange (English).
Live Components
Color Palettes
Red Orange #FF5349 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
Red Orange #FF5349 pairs with #49F5FF as its complementary color, and #49FF53 and #5349FF 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 concept of intermediate colors between primary and secondary colors has always existed, but formal naming conventions evolved over time. 'Red Orange' describes a hue that is warmer than pure red but not as yellow as pure orange. Its use became more prevalent in art, fashion, and interior design as a way to precisely communicate color choices. The hex code #ff5349 is a modern digital representation of one specific shade within the 'Red Orange' spectrum.
First Recorded Use
The specific compound term 'Red Orange' as a distinct color name likely gained traction with the standardization of color systems and the rise of commercial art and design in the early to mid-20th century. While red and orange have existed as colors for millennia, the precise naming of intermediate hues became more common with industrialization and scientific classification.
Cultural Associations
Red-orange hues are often associated with energy, warmth, excitement, and passion. They can evoke feelings of autumn, sunsets, fire, and tropical fruits. In some cultures, these colors might be linked to celebration or danger, depending on the specific context and the balance between red and orange. It's a vibrant and attention-grabbing color.
Code Snippets
/* Background */
.element {
background-color: #FF5349;
}
/* Text */
.element {
color: #FF5349;
}
/* Border */
.element {
border: 1px solid #FF5349;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF5349,
#49F5FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF5349,
#49F5FF
);
}
// SCSS variable
$red-orange: #FF5349;
// With RGB channels (useful for rgba() usage)
$red-orange-r: 255;
$red-orange-g: 83;
$red-orange-b: 73;
// Usage
.element {
background-color: $red-orange;
color: rgba($red-orange-r, $red-orange-g, $red-orange-b, 0.8);
}