Orange (color Wheel)
HEX: #FF7F00 | Modern Palette
Color Specifications
#FF7F00
255, 127, 0
29°, 100% ,100%
0, 50.2, 100, 0
About Orange (color Wheel)
Orange (color Wheel) (#FF7F00) is a color with RGB(255, 127, 0) and HSL(29.88°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #0080FF, which creates strong contrast. Its triadic palette includes Spring Green (#00FF7F) and Violet (color Wheel) (#7F00FF). The name comes from नारङ्ग (nāraṅga) (Sanskrit (via Persian and French)).
- HEX: #FF7F00
- RGB: 255, 127, 0
- HSL: 29.88°, 100%, 100%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0080FF
- Triadic colors: Spring Green (#00FF7F), Violet (color Wheel) (#7F00FF)
- The name comes from नारङ्ग (nāraṅga) (Sanskrit (via Persian and French)).
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 #FF7F00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'orange' for the fruit and tree entered European languages from Sanskrit 'nāraṅga' (via Persian 'nārang' and Arabic 'nāranj') into Old French 'pome d'orenge' and then Middle English 'orange'. Initially, the color was often described as 'red-yellow' or 'saffron'. It wasn't until the widespread cultivation and familiarity with the orange fruit in Europe (around the 16th century) that 'orange' became a distinct color name, replacing earlier descriptive terms. The color itself has been used in art and dyes for millennia, but its specific naming as 'orange' is relatively recent compared to primary colors.
First Recorded Use
1300s (fruit/tree), 1500s (color)
Cultural Associations
In many Western cultures, orange is associated with warmth, energy, enthusiasm, creativity, and autumn. It is a prominent color in Halloween decorations. In some Asian cultures, particularly Hinduism and Buddhism, saffron orange is considered sacred and is often worn by monks and holy men, symbolizing renunciation and spirituality. In the Netherlands, orange is the national color, representing the House of Orange-Nassau. It can also symbolize danger or caution (e.g., traffic cones, safety vests) due to its high visibility. In Ireland, orange is associated with Protestantism, particularly the Orange Order.
Code Snippets
/* Background */
.element {
background-color: #FF7F00;
}
/* Text */
.element {
color: #FF7F00;
}
/* Border */
.element {
border: 1px solid #FF7F00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF7F00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF7F00,
#FFFFFF
);
}
// SCSS variable
$orange-(color-wheel): #FF7F00;
// With RGB channels (useful for rgba() usage)
$orange-(color-wheel)-r: 255;
$orange-(color-wheel)-g: 127;
$orange-(color-wheel)-b: 0;
// Usage
.element {
background-color: $orange-(color-wheel);
color: rgba($orange-(color-wheel)-r, $orange-(color-wheel)-g, $orange-(color-wheel)-b, 0.8);
}