Persian Indigo

HEX: #32127A | Modern Palette

On White
13.97:1
PASS
On Black
1.50:1
FAIL

Color Specifications

HEX
#32127A
RGB
50, 18, 122
HSL
258°, 85% ,47%
CMYK
59.02, 85.25, 0, 52.16

About Persian Indigo

Persian Indigo (#32127A) is a color with RGB(50, 18, 122) and HSL(258.46°, 85.25%, 47.84%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #5A7A12, which creates strong contrast. Its triadic palette includes #7A3212 and #127A32. The name comes from Persian Indigo (English (descriptive)).

  • HEX: #32127A
  • RGB: 50, 18, 122
  • HSL: 258.46°, 85.25%, 47.84%
  • Mood: Bold
  • Style: Vivid, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #5A7A12
  • Triadic colors: #7A3212, #127A32
  • The name comes from Persian Indigo (English (descriptive)).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Persian Indigo #32127A is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Persian Indigo #32127A pairs with #5A7A12 as its complementary color, and #7A3212 and #127A32 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

PERSIAN INDIGO
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

PERSIAN INDIGO
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

PERSIAN INDIGO
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

PERSIAN INDIGO
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

PERSIAN INDIGO
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

PERSIAN INDIGO

Shades & Tints

The shade and tint range for Persian Indigo #32127A moves from dark #090316 tones through the base color to lighter #EFE9FC tones, making it useful for depth, hierarchy, and background variation.

PERSIAN INDIGO

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #1F1F7A
Protanopia #18187A
Tritanopia #143030
Achromatopsia #2C2C2C

Frequently Asked Questions

Persian Indigo (#32127A) is a color with RGB(50, 18, 122) and HSL(258.46°, 85.25%, 47.84%).

#32127A pairs strongly with #5A7A12 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#32127A is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#32127A is commonly associated with Bold.

The name Persian Indigo is linked to Persian Indigo from English (descriptive), meaning A deep, rich shade of indigo, reminiscent of dyes historically associated with Persia..

Name, History & Etymology

Origin Word Persian Indigo
Meaning A deep, rich shade of indigo, reminiscent of dyes historically associated with Persia.
Language English (descriptive)
First Recorded Use Modern (descriptive)

History

The color 'indigo' itself has a long history, derived from the indigo plant and its use as a dye. The term 'Persian' in this context is a descriptor, adding a nuance of depth, richness, and historical association with high-quality dyes and textiles from the Persian region (modern-day Iran). Persia was historically a significant hub for trade and production of luxurious goods, including richly dyed fabrics. This specific color name 'Persian Indigo' is a modern descriptive term used in design, fashion, and digital color palettes to evoke a particular shade and cultural association, rather than a historically established color name like 'ultramarine' or 'tyrian purple'.

First Recorded Use

Likely 20th-21st century for specific color naming.

Cultural Associations

The name evokes the historical artistry and luxury associated with Persian culture, particularly its textiles, carpets, and miniature paintings, which often featured deep, vibrant blues. Indigo dyes were highly valued and traded across ancient routes, and Persia played a crucial role in this trade and the development of dyeing techniques. The 'Persian' prefix suggests a more refined, perhaps slightly warmer or deeper, version of standard indigo, hinting at the rich pigments and intricate designs characteristic of Persian art.

Similar Named Colors

Deep Violet #330066 ΔE 4.25
Midnight Blue #191970 ΔE 4.33
Ultramarine #120A8F ΔE 4.52
Indigo #4B0082 ΔE 4.53

Code Snippets

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

/* Text */
.element {
    color: #32127A;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #32127A,
        #A2E212
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #32127A,
        #A2E212
    );
}

// SCSS variable
$persian-indigo: #32127A;

// With RGB channels (useful for rgba() usage)
$persian-indigo-r: 50;
$persian-indigo-g: 18;
$persian-indigo-b: 122;

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