Orange (RYB)

HEX: #FB9902 | Modern Palette

On White
2.17:1
FAIL
On Black
9.66:1
PASS

Color Specifications

HEX
#FB9902
RGB
251, 153, 2
HSL
36°, 99% ,98%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #BDBD00
Protanopia #A7A70B
Tritanopia #FF9090
Achromatopsia #B0B0B0

Frequently Asked Questions

Orange (RYB) (#FB9902) is a color with RGB(251, 153, 2) and HSL(36.39°, 99.2%, 98.43%).

#FB9902 pairs strongly with #0264FB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FB9902 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FB9902 is commonly associated with Playful.

The name Orange (RYB) is linked to nāraṅga from Sanskrit, meaning orange tree.

Name, History & Etymology

Origin Word nāraṅga
Meaning orange tree
Language Sanskrit
First Recorded Use Late Middle English

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.

Similar Named Colors

Vivid Gamboge #FF9900 ΔE 0.86
Orange Peel #FF9F00 ΔE 1.79
Vivid Orange Peel #FFA000 ΔE 2.12
Carrot Orange #ED9121 ΔE 3.58

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);
}