Orange (color Wheel)

HEX: #FF7F00 | Modern Palette

On White
2.53:1
FAIL
On Black
8.29:1
PASS

Color Specifications

HEX
#FF7F00
RGB
255, 127, 0
HSL
29°, 100% ,100%
CMYK
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

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 #FF7F00 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #B1B100
Protanopia #94940C
Tritanopia #FF7777
Achromatopsia #A3A3A3

Frequently Asked Questions

Orange (color Wheel) (#FF7F00) is a color with RGB(255, 127, 0) and HSL(29.88°, 100%, 100%).

#FF7F00 pairs strongly with #0080FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF7F00 is commonly associated with Playful.

The name Orange (color Wheel) is linked to नारङ्ग (nāraṅga) from Sanskrit (via Persian and French), meaning orange tree/fruit.

Name, History & Etymology

Origin Word नारङ्ग (nāraṅga)
Meaning orange tree/fruit
Language Sanskrit (via Persian and French)
First Recorded Use Late Middle Ages (for the fruit/tree), Early Modern (for the color)

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.

Similar Named Colors

Amber (SAE/ECE) #FF7E00 ΔE 0.31
Safety Orange #FF7800 ΔE 2.15
Princeton Orange #F58025 ΔE 2.53

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