Orange (RYB)
HEX: #FB9902 | Modern Palette
Color Specifications
#FB9902
251, 153, 2
36°, 99% ,98%
0, 39.04, 99.2, 1.57
About Orange (RYB)
Orange (RYB) (#FB9902) is a color with RGB(251, 153, 2) and HSL(36.39°, 99.2%, 98.43%). 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 #0264FB, which creates strong contrast. Its triadic palette includes #02FB99 and #9902FB. The name comes from nāraṅga (Sanskrit).
- HEX: #FB9902
- RGB: 251, 153, 2
- HSL: 36.39°, 99.2%, 98.43%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #0264FB
- Triadic colors: #02FB99, #9902FB
- 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 #FB9902 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word "orange" in English, referring to the fruit and subsequently the color, has a fascinating etymology. It traces back to the Sanskrit word "nāraṅga" (नारङ्ग), meaning 'orange tree'. This word traveled through various languages: Persian (nārang), Arabic (nāranj), Medieval Latin (arancium), Italian (arancia), and Old French (pome d'orenge or orenge). The 'n' at the beginning was often dropped through a process called rebracketing (e.g., 'a naranj' became 'an aranj'). English adopted the word from Old French, initially referring to the fruit. The use of "orange" as a color name in English is first recorded in the early 16th century, after the fruit became more widely known in Europe. Before this, the color was often described using terms like 'red-yellow' or 'saffron'.
First Recorded Use
c. 1300-1400
Cultural Associations
Orange is a vibrant color often associated with energy, warmth, enthusiasm, creativity, and joy. In many cultures, it symbolizes autumn and harvest due to the color of changing leaves and ripe produce. In Hinduism, saffron orange is a sacred color, representing sacrifice, spirituality, and purity, often worn by ascetics and holy men. In Buddhism, it is the color of illumination and the highest state of perfection. In Western cultures, it can be linked to Halloween (pumpkins) and Thanksgiving. It is also a prominent color in Dutch culture, representing the House of Orange-Nassau. In some contexts, particularly in traffic signals and safety equipment, orange signifies caution or warning.
Code Snippets
/* Background */
.element {
background-color: #FB9902;
}
/* Text */
.element {
color: #FB9902;
}
/* Border */
.element {
border: 1px solid #FB9902;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FB9902,
#F7FAFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FB9902,
#F7FAFF
);
}
// SCSS variable
$orange-(ryb): #FB9902;
// With RGB channels (useful for rgba() usage)
$orange-(ryb)-r: 251;
$orange-(ryb)-g: 153;
$orange-(ryb)-b: 2;
// Usage
.element {
background-color: $orange-(ryb);
color: rgba($orange-(ryb)-r, $orange-(ryb)-g, $orange-(ryb)-b, 0.8);
}