Orange
HEX: #FFA500 | Modern Palette
Color Specifications
#FFA500
255, 165, 0
38°, 100% ,50%
0, 35, 100, 0
About Orange
Orange (#FFA500) is a color with RGB(255, 165, 0) and HSL(38.8°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #005AFF, which creates strong contrast. Its triadic palette includes #00FFA5 and #A500FF. The name comes from nāraṅga (Sanskrit).
- HEX: #FFA500
- RGB: 255, 165, 0
- HSL: 38.8°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #005AFF
- Triadic colors: #00FFA5, #A500FF
- The name comes from nāraṅga (Sanskrit).
Live Components
Color Palettes
Orange #FFA500 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
Orange #FFA500 pairs with #005AFF as its complementary color, and #00FFA5 and #A500FF 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 word 'orange' has a fascinating journey through languages. It originated from the Sanskrit word 'nāraṅga' (नारङ्ग), meaning 'orange tree'. This word traveled to Persian as 'nārang' (نارنگ), then to Arabic as 'nāranj' (نارنج). From Arabic, it entered Medieval Latin as 'aurantia' and Old French as 'pome d'orenge' or simply 'orenge'. English adopted 'orange' from Old French. Interestingly, the initial 'n' was dropped in some European languages (like French and English) due to a process called rebracketing, where 'a nāranj' was misheard as 'an āranj'. The fruit itself is believed to have originated in Southeast Asia, specifically in a region encompassing Southern China, Northeast India, and Myanmar.
First Recorded Use
c. 1300-1400
Cultural Associations
Orange is a vibrant color often associated with energy, warmth, enthusiasm, creativity, happiness, and determination. In many cultures, it symbolizes autumn and harvest. In some Asian cultures, particularly in Hinduism and Buddhism, saffron orange is considered sacred and represents spirituality and purity. In Western cultures, it's often linked to Halloween and autumn festivities. The fruit itself is a global symbol of health and vitamin C.
Code Snippets
/* Background */
.element {
background-color: #FFA500;
}
/* Text */
.element {
color: #FFA500;
}
/* Border */
.element {
border: 1px solid #FFA500;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA500,
#005AFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA500,
#005AFF
);
}
// SCSS variable
$orange: #FFA500;
// With RGB channels (useful for rgba() usage)
$orange-r: 255;
$orange-g: 165;
$orange-b: 0;
// Usage
.element {
background-color: $orange;
color: rgba($orange-r, $orange-g, $orange-b, 0.8);
}