Persian Orange

HEX: #D99058 | Modern Palette

On White
2.60:1
FAIL
On Black
8.08:1
PASS

Color Specifications

HEX
#D99058
RGB
217, 144, 88
HSL
26°, 62% ,59%
CMYK
0, 34, 59, 15

About Persian Orange

Persian Orange (#D99058) is a color with RGB(217, 144, 88) and HSL(26°, 62.9%, 59.8%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #58A1D9, which creates strong contrast. Its triadic palette includes #58D990 and #9058D9. The name comes from Persian Orange (English).

  • HEX: #D99058
  • RGB: 217, 144, 88
  • HSL: 26°, 62.9%, 59.8%
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #58A1D9
  • Triadic colors: #58D990, #9058D9
  • The name comes from Persian Orange (English).

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

Color Characteristics

Mood
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #AAAA54
Protanopia #9A9A59
Tritanopia #DC8A8A
Achromatopsia #A1A1A1

Frequently Asked Questions

Persian Orange (#D99058) is a color with RGB(217, 144, 88) and HSL(26°, 62.9%, 59.8%).

#D99058 pairs strongly with #58A1D9 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#D99058 is suitable for Text, Button, Accent and works well with Warm styles.

The name Persian Orange is linked to Persian Orange from English, meaning An orange color reminiscent of the color of oranges found in Persia (modern-day Iran) or associated with Persian art and culture..

Name, History & Etymology

Origin Word Persian Orange
Meaning An orange color reminiscent of the color of oranges found in Persia (modern-day Iran) or associated with Persian art and culture.
Language English
First Recorded Use Early 20th Century

History

The term 'Persian Orange' emerged as a color name to describe a specific shade of orange, often with a slightly muted or earthy quality, distinct from brighter, more vivid oranges. Its association with 'Persian' likely stems from the appreciation of colors found in Persian rugs, textiles, ceramics, and miniature paintings, which often feature rich, warm, and sophisticated color palettes. These colors were introduced to Western markets and sensibilities through trade and cultural exchange. The color gained popularity in various design fields, including interior design, fashion, and graphic arts, particularly during periods that drew inspiration from exotic or historical cultures.

First Recorded Use

1920s (as a named color in fashion/design contexts)

Cultural Associations

The 'Persian' descriptor evokes a sense of exoticism, luxury, and historical artistry. In Persian culture, orange and related hues (like saffron and terracotta) have been used extensively in art, architecture, and textiles, often symbolizing warmth, earth, and sometimes royalty or divinity. The color 'Persian Orange' itself, while a Western designation, taps into this rich cultural heritage, suggesting a color that is both vibrant and refined.

Similar Named Colors

Raw Sienna #D68A59 ΔE 2.69
Tiger Eye #E08D3C ΔE 4.67
Peru #CD853F ΔE 4.85
Brown Yellow #CC9966 ΔE 5.34

Code Snippets

/* Background */
.element {
    background-color: #D99058;
}

/* Text */
.element {
    color: #D99058;
}

/* Border */
.element {
    border: 1px solid #D99058;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #D99058,
        #58A1D9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D99058,
        #58A1D9
    );
}

// SCSS variable
$persian-orange: #D99058;

// With RGB channels (useful for rgba() usage)
$persian-orange-r: 217;
$persian-orange-g: 144;
$persian-orange-b: 88;

// Usage
.element {
    background-color: $persian-orange;
    color: rgba($persian-orange-r, $persian-orange-g, $persian-orange-b, 0.8);
}