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
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 #FFA500 from deepest shade to lightest tint.
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);
}