Medium Persian Blue
HEX: #0067A5 | Modern Palette
Color Specifications
#0067A5
0, 103, 165
202°, 100% ,64%
100, 37.58, 0, 35.29
About Medium Persian Blue
Medium Persian Blue (#0067A5) is a color with RGB(0, 103, 165) and HSL(202.55°, 100%, 64.71%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #A53E00, which creates strong contrast. Its triadic palette includes #A50067 and #67A500. The name comes from Medium Persian Blue (English).
- HEX: #0067A5
- RGB: 0, 103, 165
- HSL: 202.55°, 100%, 64.71%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #A53E00
- Triadic colors: #A50067, #67A500
- The name comes from Medium Persian Blue (English).
Live Components
Color Palettes
Medium Persian Blue #0067A5 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
Medium Persian Blue #0067A5 pairs with #A53E00 as its complementary color, and #A50067 and #67A500 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 term 'Persian Blue' itself has a long history, referring to the distinctive blue often found in Persian pottery, tiles, carpets, and miniature paintings. This blue was historically derived from lapis lazuli or cobalt pigments. As color standardization became more prevalent in the 20th century, specific named shades like 'Medium Persian Blue' were introduced to categorize and reproduce these traditional colors in a more precise manner for industrial design, art supplies, and digital color systems. The 'medium' descriptor differentiates it from lighter or darker variations of 'Persian Blue'.
First Recorded Use
Early to mid-20th century (as a named color in various color systems/charts)
Cultural Associations
Persian blue, in general, holds significant cultural importance in Iran (formerly Persia) and surrounding regions. It symbolizes divinity, paradise, and the vastness of the sky and sea. It is prominently featured in Islamic art and architecture, particularly in mosque domes and tilework, creating a sense of awe and tranquility. The specific 'medium' tone aims to capture a common and recognizable iteration of this culturally rich color.
Code Snippets
/* Background */
.element {
background-color: #0067A5;
}
/* Text */
.element {
color: #0067A5;
}
/* Border */
.element {
border: 1px solid #0067A5;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0067A5,
#FF8F4B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0067A5,
#FF8F4B
);
}
// SCSS variable
$medium-persian-blue: #0067A5;
// With RGB channels (useful for rgba() usage)
$medium-persian-blue-r: 0;
$medium-persian-blue-g: 103;
$medium-persian-blue-b: 165;
// Usage
.element {
background-color: $medium-persian-blue;
color: rgba($medium-persian-blue-r, $medium-persian-blue-g, $medium-persian-blue-b, 0.8);
}