Persian Indigo
HEX: #32127A | Modern Palette
Color Specifications
#32127A
50, 18, 122
258°, 85% ,47%
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
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.
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}