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
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 #0067A5 from deepest shade to lightest tint.
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);
}